:root {
  --color-green: #00b200;
  --color-yellow: #e6d705;
  --color-blue: #0000ed;
  --color-red: #b20000;
  --color-black: #000000;
  --color-count: #32050c;
  --color-count-of: #430710;
  --color-count-on: #dc0d29;
  --color-spacae-gray: #cecece;
  --color-green-actived: #33ff33;
  --color-yellow-actived: #e5ff00;
  --color-blue-actived: #0b58ff;
  --color-red-actived: #ff1b1b;
  --table-size: 79rem;
  --information-size: 18rem;
  --button-size: 37rem;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  background-image: url(img/madeira.png);
  background-size: cover;
  background-repeat: no-repeat;
}

#main {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.divModal {
  width: 100%;
  height: 100%;
}

section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  position: absolute;
  height: 100%;
  justify-content: center;
  align-content: flex-start;
  margin-top: 75px;
}

.blue {
  height: 35%;
  width: 40%;
  background-color: var(--color-blue);
  border-radius: 100% 0 0 0;
  border: 10px solid black;
}
.blue:hover {
  background-color: var(--color-blue-actived);
  cursor: pointer;
}
.blue:active {
  transform: translate(0, 2rem);
  box-shadow: none;
}
.lightBlue {
  background-color: var(--color-blue-actived);
  height: 35%;
  width: 40%;
  border: 10px solid black;
  border-radius: 100% 0 0 0;
  transform: translate(0, 2rem);
  box-shadow: none;
}

.yellow {
  height: 35%;
  width: 40%;
  background-color: var(--color-yellow);
  border-radius: 0 100% 0 0;
  border: 10px solid black;
}

.yellow:hover {
  background-color: var(--color-yellow-actived);
  cursor: pointer;
}
.yellow:active {
  transform: translate(0, 2rem);
  box-shadow: none;
}
.lightYellow {
  background-color: var(--color-yellow-actived);
  height: 35%;
  width: 40%;
  border: 10px solid black;
  border-radius: 0 100% 0 0;
  transform: translate(0, 2rem);
  box-shadow: none;
}

.green {
  height: 35%;
  width: 40%;
  background-color: var(--color-green);
  border-radius: 0 0 0 100%;
  border: 10px solid black;
}

.green:hover {
  background-color: var(--color-green-actived);
  cursor: pointer;
}
.green:active {
  transform: translate(0, 1rem);
  box-shadow: none;
}

.lightGreen {
  background-color: var(--color-green-actived);
  height: 35%;
  width: 40%;
  border: 10px solid black;
  border-radius: 0 0 0 100%;
  transform: translate(0, 1rem);
  box-shadow: none;
}

.red {
  height: 35%;
  width: 40%;
  background-color: var(--color-red);
  border-radius: 0 0 100% 0;
  border: 10px solid black;
}

.red:hover {
  background-color: var(--color-red-actived);
  cursor: pointer;
}
.red:active {
  transform: translate(0, 1rem);
  box-shadow: none;
}

.lightRed {
  background-color: var(--color-red-actived);
  height: 35%;
  width: 40%;
  border: 10px solid black;
  border-radius: 0 0 100% 0;
  transform: translate(0, 1rem);
}

#circle {
  max-height: 25rem;
  max-width: 45rem;
  width: 45%;
  height: 25%;
  background-color: #ede7ee;
  position: absolute;
  margin-top: 181px;
  border: solid 13px;
  border-radius: 171px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-width: 26rem;
}

.button {
  height: 39px;
  width: 66px;
  position: absolute;
  margin-top: 455px;
  border-radius: 14px;
  font-family: monospace;
}

.contadora {
  display: flex;
  max-height: 6rem;
  max-width: 14rem;
  height: 25%;
  width: 40%;
  background-color: var(--color-count);
  color: var(--color-count-on);
  border-radius: 25px;
  border: solid 6px black;
  font-size: 7rem;
  justify-content: center;
  align-items: center;
}

input {
  height: 41px;
  width: 207px;
  border-radius: 12px;
}

button {
  width: 100px;
  height: 45px;
  border-radius: 5px;
  margin-left: 6px;
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: 100px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  text-shadow: black 5px 5px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 15rem;
  height: 100%;
}
form input {
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  background: none;
  border: none;
  width: 100%;
  max-width: 90rem;
  height: 10rem;
  border-bottom: 1px solid white;
  color: white;
  text-transform: uppercase;
  text-shadow: black 5px 5px;
}

::placeholder {
  text-transform: uppercase;
  color: white;
  text-align: center;
}
form input:hover {
  background: none;
  border: none;
  width: 90rem;
  border-bottom: 4px solid var(--color-spacae-gray);
  color: white;
}
form button {
  margin-top: 5rem;
  width: 100%;
  max-width: 90rem;
  height: 10rem;
  background: linear-gradient(
    to top,
    #525a28,
    #3c3c14,
    #667a25,
    #675f31,
    #3b3c12
  );

  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 50px;
  color: #ede7ee;
}
form button:hover {
  cursor: pointer;
  background: none;
}
form button:active {
  transform: translate(0, 1rem);
  box-shadow: none;
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 100px;
  text-align: center;
  text-transform: uppercase;
  color: #b6cbdd;
  text-shadow: #b6cbdd 5px 5px;
}
p {
  font-size: 25px;
  text-align: center;
  font-family: monospace;
  text-transform: uppercase;
  font-weight: 900;
  flex-wrap: wrap;
}

.score {
  font-size: 30px;
  text-align: center;
  width: 45%;
  text-transform: uppercase;
  font-weight: 900;
}

.divQuadro {
  max-width: 390px;
  max-height: 263px;
  min-width: 290px;
  min-height: 216px;
  width: 90%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #051937,
    #2e405e,
    #586c86,
    #859ab1,
    #b6cbdd
  );
  position: absolute;
  margin-top: 215px;
  border-radius: 80px;
  border: solid 7px white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#recomecar {
  background: none;
  border-radius: 30px;
  width: 22rem;
  height: 7rem;
  font-weight: 900;
  font-size: 100x;
  color: white;
  text-transform: uppercase;
  border-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#recomecar:hover {
  cursor: pointer;
  background: #2e405e;
}
#recomecar:active {
  transform: translate(0, 1rem);
  box-shadow: none;
}
.hide {
  display: none;
}

@media (max-width: 550px) {
  h1,
  h2 {
    font-size: 50px;
  }

  input {
    font-size: 20px;
    width: 100%;
  }

  #button {
    font-size: 30px;
  }

  ::placeholder {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
  .contadora {
    font-size: 4rem;
  }

  .score {
    font-size: 20px;
  }

  #recomecar {
    font-size: 10px;
  }
}
