button {
  cursor: pointer;
}

/************************* PLAY *************************/

.play_btn {
  border: none;
  background: none;
}

.start_button {
  width: clamp(22vw, 45vw, 250px);
  height: clamp(5vh, 10vh, 80px);
  filter: hue-rotate(-336deg);
}

.start_button:hover {
  filter: drop-shadow(0px 3px 25px rgb(255, 255, 255));
}

/************************* FULLSCREEN *************************/

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a6a6a6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #40bcd3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #40bcd3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/************************* INSTRUCTIONS *************************/

.instructions_img {
  width: clamp(50px, 25%, 150px);
  height: clamp(60px, 30%, 200px);
}

.instructions_img:hover {
  filter: hue-rotate(-33deg) drop-shadow(0px 3px 25px rgb(255, 255, 255));
  animation: spin 0.3s backwards;
}

/************************* TRY AGAIN *************************/

.button-57 {
  background-color: #203c47;
  border: 0;
  border-radius: 56px;
  color: #fff;
  display: inline-block;
  font-family: system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu,
    "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  outline: 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  overflow: hidden;
}

.button-57:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  width: 92%;
}

.button-57:hover {
  box-shadow: rgba(255, 255, 255, 0.2) 0 3px 15px inset,
    rgba(0, 0, 0, 0.1) 0 3px 5px, rgba(0, 0, 0, 0.1) 0 10px 13px;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .button-57 {
    padding: 16px 48px;
  }
}
