*{
    padding: 0;
    margin: 0;
    font-family: monospace;
    overflow: hidden;
}
body{
    height: 100vh;
    background-color: #445269;
    overflow: hidden;
}
.header{
    padding: 30px;
    width: 100%;
    font-size: 20px;
    text-align: center;
    color: #D4F4FF;
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.inner-wrapper{
    display: flex;
}
.menu-items{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.menu-items .selected {
    background-color: rgb(19, 69, 102);
    color: white;
}
.menu-items input:first-child,
.menu-items button{
    width: 150px;
    line-height: 50px;
    border: 2px solid white;
    background-color: #D4F4FF;
    color: #445269;
    outline: none;
    font-size: 18px;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.menu-items input:first-child:hover,
.menu-items button:hover{
    background-color: rgb(19, 69, 102);
    color: white;
    cursor: pointer;
}
#color-wheel{
    height: 50px;
    width: 70px;
    margin: 0;
    padding: 0;
}
.slidecontainer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    margin-top: 10px;
    color: #D4F4FF;
    font-weight: 900;
}
.slider {
    -webkit-appearance: none;
    margin-top: 10px;
    width: 550px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    background-color: #D4F4FF;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 27px;
    width: 27px;
    border-radius: 50%;
    background: rgb(38, 128, 212);
    cursor: ew-resize;
}
.slider::-webkit-slider-runnable-track  {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 550px;
    height: 550px;
    flex-shrink: 0;
    background-color: white;
}
.row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
}
.pixel{
    display: flex;
    height: 100%;
    flex: 1 1 100%;
    border: none;
    margin: 0;
}

@media only screen and (max-width: 585px){
    .container{
        width: 450px;
        height: 450px;
    }
    .slider{
        width: 450px;
    }
}
@media only screen and (max-width: 467px){
    .container{
        width: 400px;
        height: 400px;
    }
    .slider{
        width: 400px;
    }
}
@media only screen and (max-width: 400px){
    .container{
        width: 350px;
        height: 350px;
    }
    .slider{
        width: 350px;
    }
}
@media only screen and (max-width: 360px){
    .container{
        width: 300px;
        height: 300px;
    }
    .slider{
        width: 300px;
    }
}