html {
    height: 100%;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

*:focus {
    outline: 3px dashed var(--text-color);
    outline-offset: 3px;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #1b9343;
    font-family: "Arial", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1150px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}  

.main-content {
    flex-grow: 1;
}

.input-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 860px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.label {
    font-size: 24px;
    color: #f9d506;
    padding: 8px;
    background-color: #000;
}

.input-js {
    width:100%;
    height: 150px;
}

.color-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

.hex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 130px;
    min-height: 66px;
    font-size: 28px;
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 10px;
    margin-right: 20px;
}

.icon-wrapper {
    padding: 10px 15px;
    background-color: rgba(36, 9, 9, 0.581);
    border: 1px solid #000;
    border-radius: 8px;
}

.icon-wrapper:hover {
    background-color: #c0c0c03c;
}

.copy {
    font-size: 28px;
    color: #f9d506;
    cursor: pointer;
}

.hidden {
    display: none;
}

.values-wrapper {
    display: flex;
    margin-left: -30px;
}

.value-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    padding: 10px;
    min-height: 80px;
    margin-left: 30px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.value-name {
    font-weight: 700;
    margin-bottom: 8px;
}
