* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  background-image: url(../img/bg\ cloud.png);
  background-size: auto;
  background-position: center;
}

main {
  background-color: #FBF7F4;
  margin: 50px;
  border: solid #A18276 7px;
  border-radius: 30px;
  width: auto;
  min-height: 90vh;
  max-height: auto;
}

.stage {
  display: none;
  margin: 0 auto;
  max-width: 80vw;
  margin-bottom: 20px;
  flex-direction: column;
}
.stage.active {
  display: block;
  text-align: center;
}

.img-game-pic {
  height: auto;
  width: 200px;
  border-radius: 15px;
  border: 2px solid grey;
  margin: 30px 35px;
}
.img-game-pic:hover {
  animation: bounce 1.3s ease-in-out 5;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}

.img-for-game-logos {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.yellow {
  background-color: #FFD97D;
  width: 50%;
  padding: 5px;
  margin: 20px auto;
}

.red {
  background-color: #EE6055;
  width: 50%;
  padding: 5px;
  margin: 20px auto;
}

.green {
  background-color: #60D394;
  width: 50%;
  padding: 5px;
  margin: 20px auto;
}

.music-btn {
  width: 200px;
  font-size: 12px;
  padding: 5px;
  border: 2px solid #A18276;
  border-radius: 5px;
  box-shadow: none;
}
.music-btn:hover {
  background-color: #A18276;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100px;
  height: 6px;
  background: #A18276;
  border-radius: 5px;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #FBF7F4;
  border: 2px solid #212529;
  border-radius: 50%;
  cursor: pointer;
}

label {
  font-size: 12px;
  padding: 8px;
}

.music-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2 {
  display: flex;
  justify-content: center;
}

h1 {
  border-bottom: 5px solid #A18276;
  padding: 25px;
  font-size: 2.5em;
}

a {
  text-decoration: none;
  color: #212529;
}

h2 {
  font-style: italic;
  font-size: 30px;
  padding: 30px;
  color: rgb(115, 115, 115);
}

p {
  margin: auto 5em;
  padding: 20px;
  display: flex;
  justify-content: center;
  line-height: 1.4em;
  font-size: 1.3em;
}

.cookieees {
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}

button {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 15px;
  height: auto;
  width: 50%;
  padding: 15px;
  margin: 5px;
  box-shadow: 0px 3px #CFCFCF;
  align-items: center;
}
button:hover {
  cursor: pointer;
  transition-duration: 0.5s;
}
button:active {
  box-shadow: 0px 2px #CFCFCF;
  transform: translateY(3px);
  transition-duration: 0.5s;
}

.choice1 {
  border: solid 3px #0CB2AF;
}
.choice1:hover {
  background-color: #0CB2AF;
}

.choice2 {
  border: solid 3px #A1C65D;
}
.choice2:hover {
  background-color: #A1C65D;
}

.choice3 {
  border: solid 3px #FAC723;
}
.choice3:hover {
  background-color: #FAC723;
}

.choice4 {
  border: solid 3px #F29222;
}
.choice4:hover {
  background-color: #F29222;
}

.choice5 {
  border: solid 3px #E95E50;
}
.choice5:hover {
  background-color: #E95E50;
}

.choice6 {
  border: solid 3px #936FAC;
}
.choice6:hover {
  background-color: #936FAC;
}

.bekraeft {
  background-color: #60D394;
}
.bekraeft:hover {
  border: 2px solid #60D394;
  font-size: 1.1em;
}

.laes-vilkaar {
  background-color: #FFD97D;
}
.laes-vilkaar:hover {
  border: 2px solid #FFD97D;
  font-size: 1.1em;
}

.fortryd {
  background-color: #EE6055;
}
.fortryd:hover {
  border: 2px solid #EE6055;
  font-size: 1.1em;
}

.kontaktform {
  width: 50%;
  margin: 10px auto;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  padding: 10px;
  border: 2px solid grey;
  border-radius: 15px;
  margin-bottom: 0.5rem;
}

.visually-hidden {
  font-size: 1.1em;
  font-weight: bold;
  display: flex;
  justify-content: left;
  padding-bottom: 2px;
}

fieldset {
  border-style: dotted;
}

@media screen and (max-width: 900px) {
  body {
    background-color: #A18276;
    background-image: none;
  }
  main {
    margin: 50px auto;
    max-width: 95%;
    height: auto;
    background: #FBF7F4;
    border: solid #A18276 7px;
    border-radius: 30px;
    padding: 5px;
  }
  .stage {
    max-width: 90vw;
    margin-bottom: 20px;
  }
  .img-game-pic {
    width: 80px;
    margin: 10px 12px;
  }
  .img-for-game-logos {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
  }
  h1 {
    text-align: center;
    font-size: 30px;
    padding-bottom: 0;
  }
  p {
    font-size: 1rem;
    padding: 0 20px;
    margin: 0;
  }
  .cookieees {
    max-width: 80%;
    padding-bottom: 10px;
  }
  button {
    width: 80%;
    color: #212529;
  }
  button:active {
    box-shadow: none;
    transform: none;
    transition-duration: none;
  }
  button:hover {
    transition-duration: none;
  }
}/*# sourceMappingURL=style.css.map */