
@media only screen and (max-width: 600px) {
    #maker-space {
        width: 100%;
    }
}

body {
    color: white;
    background-color: black;
    max-width: 500px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0px;
}
* {
  box-sizing: border-box


}

#prog {
  width: 200px;
  background-color: grey;
  height: 30px;
}

#prog-bar {
  width: 1%;
  height: 30px;
  background-color: green;
}
#mouth_menu, #eyeR_menu, #eyeL_menu {
  display: none;
}


h2 {
margin: 10px 5px;
font-family: 'stampede', serif;

}

.picture {
    width: 500px;
    height: 500px;


}
/* #dressup_menu{
width: 100%;
border: solid white 1px;
overflow-y: auto;
max-height: 400px


} */



  #maker_space{
    position: relative;
    border: solid black 1px;
    background-color: white;
    aspect-ratio: 1/1;
    max-width: 500px;


  }
.layer {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.overlay {
    background-color:white;
    width: 100%;
    height: 100%;
    display: none;
    position:fixed;
    top: 0px;
    left: 0px;
}
.range_palette {
   
    padding: 10px;
    


}

.reset_button{
    width: 100%;
    height: 40px;
    margin: 5px auto;
    flex: 1 1 auto;
    font-family: 'stampede', serif;
    font-size: 20px;
    color: white;
    background-color: black;
    border: white 1px solid;
}

.reset_button:hover {
        color: black;
        background-color: white;
    }

.popup_menu_page{
  width: 500px;
  height: 100%;
  background-color: black;
  top: 0px;
  bottom: 0px;
  position: absolute;
  padding: 0px;
  margin-left: -20px;
  margin-right: 50px
}

.menu_area{
    border: white solid 1px;
    overflow: auto;
    margin-bottom: 20px
    

}

.color_range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    border: solid white 1px;
    border-radius: 5px;
    margin: 10px
}

.color_range::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 20px; /* Set a specific slider handle width */
  height: 20px; /* Slider handle height */
  background: black; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 0%;
  
}

.color_range::-moz-range-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 20px; /* Set a specific slider handle width */
  height:20px; /* Slider handle height */
  background: white; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
  border: black 2px solid;
}

.hue {
  background-image: linear-gradient(90deg, red 0%, orange 15%, yellow 20%, green 35%, cyan 50%, magenta 85%, red 100%);
}
.sat {
  background-image: linear-gradient(90deg,gray, red);
}
.bright {
  background-image: linear-gradient(90deg,black 0%, white 90%);
}
.opa {
    background-image: linear-gradient(90deg,lightgray 0%, red 90%);


}
.menu_page {
  padding: 10px 20px;
  width: 100%;
  height: inherit;

}
.menu_page#face{
  display: none;
}
.menu_page#hair{
  display: none;
}
.menu_page#bg{
  display: none;
}
.menu_page#clothes{
  display: none;
}
.menu_page#save{
  display: none;
}
.menu_page#load{
  display: none;
}
.menu_page#accessories{
  display: none;
}

@font-face {
font-family: 'stampede'; /* set name */
src: url("/fonts/stampede.ttf?#iefix"); /* url of the font */
}

@font-face {
font-family: 'creepshow'; /* set name */
src: url("/fonts/Creepshow.ttf?#iefix"); /* url of the font */
}

@font-face {
font-family: 'zamonia'; /* set name */
src: url("/fonts/Zamonia.ttf?#iefix"); /* url of the font */
}

.page_menu{
    min-height: 70px;
    width: 100%;
    display: flex;
    overflow:auto;
    flex-direction: row;
    button {
        width: fit-content;
        height: 50px;
        margin: auto 1px;
        flex: 1 1 auto;
        font-family: 'stampede', serif;
        font-size: 20px;
        color: white;
        background-color: black;
        border: white 1px solid;
        padding: 0px 20px;
        }
    button:hover {
        color: black;
        background-color: white;
    }
    
    button:active {
        text-decoration: underline 2px;
    }

}
.prev_next_buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    button {
        width: fit-content;
        height: 50px;
        margin: auto;
        flex: 1 1 auto;
        font-family: 'stampede', serif;
        font-size: 20px;
        color: white;
        background-color: black;
        border: white 1px solid;
        }
    button:hover {
        color: black;
        background-color: white;
    }

}
label {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    width: 100%;
    display: block;
    padding-bottom: 10px;


}

textarea {
  border: white 1px solid;
    height: 200px;
    width: 100%;
    margin: auto;
    color: white;
    background-color: black;
}