@import url("https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --azul: #44a3d5;
  --cinza: rgb(194, 194, 194);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 97dvh;
  background-color: #141414;
  color: #fff;
  cursor: crosshair;
  font-family: "Roboto", sans-serif;
}

input#nome {
  min-width: 17.5rem;
  max-width: 17.5rem;
  min-height: 3.5rem;
  max-height: 3.5rem;
  box-shadow: 4px 4px 10px #7c7c7c;
  border: 4px solid var(--azul);
  border-radius: 5px;
  color: var(--azul);
  font-size: 22px;
  outline: none;
  transition: 0.2s ease-in-out;
}
input#nome:hover,
input#nome:focus {
  box-shadow: 4px 4px 15px #7c7c7c;
}
input#nome::placeholder {
  position: relative;
  left: 2rem;
  top: 0.2rem;
  font-size: 22px;
  color: #141414;
  opacity: 0.5;
}

div.side_actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
div#div_sair {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.side_actions div.dev_mode_div {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
div.side_actions select#select_dev_mode {
  width: 10rem;
  height: 2rem;
  background-color: #f3f3f3;
  color: var(--azul);
  font-size: 15px;
}
div.side_actions select#select_dev_mode option {
  width: 10rem;
  height: 2rem;
  background-color: #f3f3f3;
  color: var(--azul);
  font-size: 15px;
}

div#div_sair button {
  margin-top: 1rem;
  background-color: var(--azul);
  color: #fff;
  font-size: 17px;
  border: none;
  border-radius: 4px;
  box-shadow: 2px 3px 3px #09171e;
  width: 10rem;
  height: 3rem;
  transition: 0.2s ease-in-out;
}
div#div_sair button:hover {
  background-color: #4baadd;
  box-shadow: 2px 2px 2px #36799b;
}

div#menu {
  width: 40rem;
  height: 30rem;
  background-color: rgb(194, 194, 194);
  box-shadow: 5px 5px 20px #7c7c7c;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 6px;
}
div#menu #menu_title {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
div#menu #menu_title h1 {
  text-shadow: 4px 4px 10px #000;
}
div#menu #menu_title img {
  position: relative;
  top: 1rem;
  width: 4rem;
  height: 4rem;
}
div#menu h1 {
  margin-top: 4rem;
  font-size: 55px;
  color: var(--azul);
}
div#menu .buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 20rem;
  height: 25rem;
  gap: 1rem;
}
div#menu button {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  box-shadow: 1px 2px 2px #4e4e4e;
  width: 18rem;
  height: 3.5rem;
  background-color: var(--azul);
  color: #fff;
  font-size: 20px;
  transition: 0.2s ease-in-out;
}
div#menu button:hover {
  background-color: #52bcf5;
  box-shadow: 2px 5px 5px #7c7c7c;
}

div#game {
  /*  */
}
.cross {
  z-index: -1;
  background-color: #fff;
}
.left {
  width: 50%;
  height: 0.2rem;
}
.right {
  width: 50%;
  height: 0.2rem;
}
.top {
  width: 0.2rem;
  height: 50%;
}
.bottom {
  width: 0.2rem;
  height: 50%;
}
.two {
  position: absolute;
  background-color: #141414;
  width: 100%;
  height: 0.2rem;
}

.levels {
  position: absolute;
  left: 14.5rem;
  top: 6rem;
  font-size: 20px;
}
.levels p {
  height: 15px;
}
.points {
  position: absolute;
  left: 18rem;
  top: 25rem;
  height: 2rem;
  font-size: 18px;
}
div.pass_level {
  display: none;
  position: absolute;
  right: 14rem;
  top: 5rem;
}
div.pass_level h3 {
  text-shadow: 0px 0px 3px #fff;
}
div.pass_level button {
  border: none;
  box-shadow: 1px 1px 4px #44a3d5;
  width: 4rem;
  height: 2rem;
  color: #fff;
  border-radius: 2px;
  background-color: #44a3d5;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
div.pass_level button:hover {
  box-shadow: 2px 2px 5px #44a3d5;
}
button.button {
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #44a3d5;
  color: #44a3d5;
  /* transition: 0.1s ease-in-out; */
  cursor: crosshair;
  z-index: 2;
}
button.button span#ball_height {
  z-index: 2;
  font-size: 15px;
  font-weight: 500;
  color: var(--azul);
}
div.timer {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 18rem;
  bottom: 6rem;
}
div.timer div.time_div {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
div.timer h2:first-child {
  letter-spacing: 0.1rem;
}

div.timer p.max_time_level {
  font-size: 20px;
}
div.timer span.max_time_level {
  font-size: 24px;
  color: var(--azul);
}

div.visit {
  position: absolute;
  bottom: 2rem;
}
div.visit h2 {
  font-size: 20px;
}
div.visit a {
  text-decoration: underline;
  color: var(--azul);
}

p#width_point,
p#height_point,
h2#time,
span {
  color: #44a3d5;
}

@media (min-width: 1400px) {
  div.levels {
    left: 22rem;
    top: 10rem;
    font-size: 25px;
  }
  div.points {
    position: absolute;
    top: 40rem;
    left: 22rem;
    font-size: 22px;
  }
  div.timer {
    right: 24rem;
    bottom: 12rem;
    font-size: 20px;
  }
}
