* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Encode Sans SC", sans-serif;
}
body {
  background: linear-gradient(to right, #ff0099, #493240);
  /* font-family: 'Encode Sans SC', sans-serif; */
}
.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.head {
  color: white;
  margin-bottom: 20px;
}
.main {
  height: 60%;
  width: 50%;
  background-color: azure;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-radius: 7px;
  transition: 800ms all ease;
}
.weight,
.height {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 70%;
  background: black;
  height: 5px;
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
  transition: opacity 0.2s;
  cursor: pointer;
}
.weight::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ff0099;
}
.height::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ff0099;
}
.weight-div,
.height-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20%;
}
label {
  font-weight: bold;
  font-size: 20px;
  margin-left: 20px;
}
h2 {
  padding-top: 20px;
}

@media (max-width: 1025px) {
  .main {
    width: 70%;
  }
}
@media (max-width: 415px) {
  .head {
    font-size: 15px;
  }
}
