@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "inter";
}

body {
  background-color: rgb(251, 241, 226);
  box-sizing: border-box;
  /* background-image: url(/Images/soundWaveV2.png); */
}

.wave {
  position: absolute;
  width: 80vw;
  z-index: -1;
  top: 55%;
  left: 12%;
}

#intro {
  background-image: linear-gradient(
    to right top,
    #4a057b,
    #950072,
    #ca005d,
    #eb3241,
    #f96f1d
  );
  width: 100vw;
  height: 250px;
}

#no-intro {
  display: none;
}

#intro h1 {
  text-align: center;
  color: white;
  padding-top: 3rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

#intro h3 {
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: 300;
  padding-top: 1rem;
}

#intro hr {
  /* width: 60%;
  margin: 0 auto; */
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 253, 253, 0.75),
    rgba(255, 255, 255, 0)
  );
}

#declare {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

#start-game {
}

.vinyl {
  width: 10rem;
  display: block;
  margin: 0 auto;
  margin-top: -4.5rem;
  animation: roll 3s linear infinite;
  transform: rotate(30deg);
}

@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.presentation {
  text-align: center;
  margin-top: 3rem;
  margin-right: 20rem;
  margin-left: 20rem;
  text-transform: uppercase;
}

#level {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
  padding: 3rem;
}

.sampling {
  border: solid 1px #950072;
  width: 30rem;
  background-color: rgba(251, 241, 226, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 2px 5px #950072;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}

.sampling h3 {
  margin-bottom: 0.5rem;
  color: #4a057b;
  text-transform: uppercase;
}

.sampling p {
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: justify;
}

.sampling strong {
  color: #4a057b;
}

.rules {
  border: solid 1px #eb3241;
  width: 30rem;
  background-color: rgba(#eb3241, 0.15);
  backdrop-filter: blur(8px);
  padding: 2rem;
  box-shadow: 2px 5px #eb3241;
}

.rules h3 {
  margin-bottom: 0.5rem;
  color: #eb3241;
  text-transform: uppercase;
}

.rules p {
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: justify;
}

.rules strong {
  color: #eb3241;
}

ul {
  margin-top: 0.5rem;
}

li {
  margin-top: 0.5rem;
  text-align: justify;
  list-style: none;
}

#no-level {
  display: none;
}

#launch {
  display: block;
  margin: 0 auto;
  margin-bottom: 5rem;
  margin-top: 2rem;
}

.btn {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(
    100% 100% at 100% 0,
    #f96f1d 0,
    #ca005d 100%
  );
  border: 0;
  border-radius: 0px;
  box-shadow: rgba(74, 5, 123, 0.4) 0 2px 4px,
    rgba(74, 5, 123, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.btn:focus {
  box-shadow: #950072 0 0 0 1px inset, rgba(74, 5, 123, 0.4) 0 2px 4px,
    rgba(74, 5, 123, 0.3) 0 7px 13px -3px, #950072 0 -3px 0 inset;
}

.btn:hover {
  box-shadow: rgba(74, 5, 123, 0.4) 0 4px 8px,
    rgba(74, 5, 123, 0.3) 0 7px 13px -3px, #950072 0 -3px 0 inset;
  transform: translateY(-2px);
  background-image: radial-gradient(
    100% 100% at 100% 0,
    #ca005d 0,
    #f96f1d 100%
  );
}

.btn:active {
  box-shadow: #950072 0 3px 7px inset;
  transform: translateY(2px);
}

#game-time {
}

#noGame {
  display: none;
}

#game {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(
      to right top,
      #4a057b,
      #950072,
      #ca005d,
      #eb3241,
      #f96f1d
    )
    1;
  margin: 2rem;
  margin-right: 6rem;
  margin-left: 6rem;
  padding: 2rem;
  background-color: rgba(251, 241, 226, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: -4px -5px 10px #ca005d;
}

#game h2 {
  text-align: center;
  text-transform: uppercase;
  color: #f96f1d;
  padding-bottom: 2rem;
  text-shadow: 1px 1px 2px #4a057b;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.lead {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.points {
  /* 0 to 7 */
  position: absolute;
  left: 5%;
  background-color: #ca0032;
  border-color: #ca0032;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  color: white;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 3px 2px 3px black;
}

.points-v2 {
  /* 8 to 14 */
  position: absolute;
  left: 5%;
  background-color: #f96f1d;
  border-color: #f96f1d;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  color: white;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 3px 2px 3px black;
}

.points-v3 {
  /* 15 to 21 */
  position: absolute;
  left: 5%;
  background-color: #f1c253;
  border-color: #f1c253;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  color: white;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 3px 2px 3px black;
}

.points-v4 {
  /* 21 to 28 */
  position: absolute;
  left: 5%;
  background-color: #1eff00;
  border-color: #1eff00;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  color: white;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 3px 2px 3px black;
}
.points-v5 {
  /* 28 to 30 */
  position: absolute;
  left: 5%;
  background-image: linear-gradient(
    to right top,
    #4a057b,
    #950072,
    #ca005d,
    #eb3241,
    #f96f1d
  );
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  color: white;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 3px 2px 3px black;
}

.counter {
  background-color: #f96f1d;
  border-color: #f96f1d;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  font-weight: 700;
  color: white;
  margin-right: 2rem;
  box-shadow: 3px 2px 3px #4a057b;
}

#music {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 2rem;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  /* margin-bottom: 3rem; */
  /* border:1px solid black; */
}

.sampled {
  /* border: 1px solid black; */
  width: 23rem;
}

.sampled h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
  color: #4a057b;
  text-transform: capitalize;
  font-size: 1.3rem;
}

.sampled p {
  font-size: 1.1rem;
  font-weight: 400;
}

.sampled p::first-letter {
  text-transform: uppercase;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center .btn {
  margin-top: 2rem;
}

.arrow {
  height: 25%;
  /* margin-left: 7rem;
  margin-right: 7rem; */
}

.find {
  /* border: 1px solid black; */
  width: 23rem;
  display: flex;
  justify-content: center;
  padding-left: 4rem;
}

.find h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
  color: #f96f1d;
  text-transform: capitalize;
  font-size: 1.3rem;
}

.find p {
  font-size: 1.1rem;
  font-weight: 400;
}

.find p::first-letter {
  text-transform: uppercase;
}

.question {
  width: 30%;
  display: flex;
  justify-content: center;
  /* margin-left: 2rem; */
}

.no-question {
  display: none;
}

.restart {
}

#noSquareAnswers {
  display: none;
}

#squareAnswers {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-one {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.row-two {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#noDuoAnswers {
  display: none;
}
#duoAnswers {
}

.no-display {
  display: none;
}

.next {
}

.good {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(
    100% 100% at 100% 0,
    #afefa7 0,
    #02c44f 100%
  );
  border: 0;
  border-radius: 0px;
  box-shadow: rgba(5, 88, 2, 0.4) 0 2px 4px, rgba(5, 88, 2, 0.3) 0 7px 13px -3px,
    rgba(5, 88, 2, 0.5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 20px;
  font-weight: 600;
}

.good:focus {
  box-shadow: rgb(5, 88, 2) 0 0 0 1px inset, rgb(5, 251, 67) 0 2px 4px,
    #02c44f 0 7px 13px -3px, #afefa7 0 -3px 0 inset;
}

.good:hover {
  box-shadow: rgba(2, 196, 79, 0.4) 0 4px 8px,
    rgba(2, 196, 79, 0.3) 0 7px 13px -3px, #02c44f 0 -3px 0 inset;
  transform: translateY(-2px);
  background-image: radial-gradient(
    100% 100% at 100% 0,
    #02c44f 0,
    #afefa7 100%
  );
}

.bad {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #e61d1d 0, black 100%);
  border: 0;
  border-radius: 0px;
  box-shadow: rgba(77, 2, 2, 0.4) 0 2px 4px, rgba(77, 2, 2, 0.3) 0 7px 13px -3px,
    rgba(137, 7, 7, 0.5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 20px;
  font-weight: 600;
  text-decoration: line-through;
}

.bad:focus {
  box-shadow: rgb(0, 0, 0) 0 0 0 1px inset, rgb(170, 7, 7) 0 2px 4px,
    #c40202 0 7px 13px -3px, #ea7d7d 0 -3px 0 inset;
}

.bad:hover {
  box-shadow: rgba(230, 7, 7, 0.4) 0 4px 8px,
    rgba(250, 7, 7, 0.3) 0 7px 13px -3px, #c40202 0 -3px 0 inset;
  transform: translateY(-2px);
  background-image: radial-gradient(100% 100% at 100% 0, black 0, #e61d1d 100%);
}

.no-answers {
  display: none;
}

.answers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}

.answers .btn {
  margin: 1rem;
}

.timeout {
  display: block;
}

.no-time {
  display: none;
}

.timer {
  font-size: 30rem;
}

.hidden {
  display: none;
}

.victory {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(
      to right top,
      #4a057b,
      #950072,
      #ca005d,
      #eb3241,
      #f96f1d
    )
    1;
  margin: 2rem;
  margin-right: 14rem;
  margin-left: 14rem;
  margin-bottom: 5rem;
  padding: 2rem;
  background-image: linear-gradient(
    to right top,
    #4a057b,
    #950072,
    #ca005d,
    #eb3241,
    #f96f1d
  );
  backdrop-filter: blur(10px);
  box-shadow: -4px -5px 10px #ca005d;
}

.victory h2 {
  text-align: center;
  color: white;
  font-weight: 900;
  margin-bottom: 1rem;
}

.victory hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 253, 253, 0.75),
    rgba(255, 255, 255, 0)
  );
  margin-bottom: 2rem;
}

.scoreboard {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 3rem;
}

.scoreboard h3 {
  color: white;
  text-transform: uppercase;
  /* font-size: 1.2rem; */
  /* margin-left: 1rem; */
}

.vinyl-score {
  width: 6rem;
  position: absolute;
  margin: 0 auto;
  /* margin-top: -2.5rem; */
  animation: roll 3s linear infinite;
  transform: rotate(30deg);
  bottom: -3rem;
  left: calc(50% - 3rem);
  /* padding-bottom: 2rem; */
}

.pointsboard {
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 3rem;
  text-shadow: 1px 1px black;
  margin-top: -1.5rem;
}
