body {
    margin: 0;
    background-color: var(--L);
    color: var(--D);
    justify-content: center;
    align-items: center;
    height: 100dvh;
}
#headerContainer {
    height: 20dvh;
    display: flex;
}
#headerContainer a {
    height: 12dvh;
    margin: 5vmin auto auto auto;
    width: calc(100% - 20vmin);
    display: flex;
}
#headerContainer img {
    height: 100%;
    width: 100%;
    margin: 0;
}
#container {
    width: 100dvw;
    height: 60dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inputs {
    display: flex;
    justify-content: center;
    margin-bottom: 2vmin;
}
button {
    font-size: 2.6vmin;
    padding: 0.6vmin 1.2vmin;
    border-radius: 0.5vmin;
    border: none;
    background-color: var(--D);
    color: var(--L);
    cursor: pointer;
}
button:hover {
    opacity: 0.8;
}
.title {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 2.8vmin;
    margin-bottom: 2vmin;
}
#footerContainer {
    height: 20dvh;
    display: flex;
    justify-content: space-between;
}
#footerContainer a {
    height: 18vmin;
    margin-top: auto;
}
#footerContainer img {
    height: 18vmin;
}
.price {
    font-size: 3.5vmin;
}

#selectButtons {
    display: flex;
    margin: 0 auto 2vmin auto;
    width: fit-content;
}
#item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 2.2vmin;
}
#item input {
    display: none;
}
#item label {
    padding: 1vmin;
    border: 2px solid var(--D);
    display: inline-block;
    cursor: pointer;
    border-radius: 0; 
}
#selectButtons #item:not(:first-child) label {
    border-left: none;
}
#selectButtons #item:first-child label {
    border-radius: 5px 0 0 5px;
}
#selectButtons #item:last-child label {
    border-radius: 0 5px 5px 0;
}
#item input:checked + label {
    background-color: var(--D);
    color:var(--L);
}

#quantityInput {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    font-size: 2.2vmin;
    padding: 0.6vmin 1.2vmin;
    border-radius: 0.5vmin;
    border: 2px solid var(--D);
    background-color: var(--L);
}