*{
  padding: 0;
  margin: 0;
}
#info{
  height: 100vh;
  width: 100vw;
  background: linear-gradient(180deg, rgba(37, 37, 37, 0.21) 0%, #252525 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content{
  width: 100%;
  height: 100%;
}
.btns{
  width: 100%;
  position: absolute;
  top: 20px;
  display: flex;
  justify-content: center;
}
#changeHair{
  margin: 0 20px;
}
.btns>button{
  min-width: 120px;
  min-height: 40px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.15) 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  border: none;
}
.btns>button>p{
  font-weight: 600;
  font-size: 16px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.85) 100%);
  background-clip: text;
 	-webkit-background-clip: text;
  color: transparent;
}
.btns>button:hover {
  transition: all 0.3s;
  background: #c2c1c1;
  opacity: 0.8;
}
.btns>button:active {
  opacity: 0.3;
}
.btns>button:focus {
  outline: none;
}
.option{
  background: rgba(255, 255, 255, 0.3);
  height: calc(100vh - 60px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: absolute;
}
.cloths{
  left: 0;
  top: 0;
}
.actions{
  right: 0;
  top: 0;
}
.option>div{
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  width: 5vw;
  height: 5vw;
  cursor: pointer;
  /* background-color: red; */
}
.option>div>img{
  width: 100%;
  height: 100%;
}
.logo{
  width: calc(5vw + 50px) !important;
  padding: 5px;
  border-bottom: solid 1px rgba(31, 29, 29, 0.3);;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  top: 0;
}