* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(224, 224, 224);
}

h1 {
  font-size: 60px;
}

p {
  font-size: 20px;
}

a {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: rgb(197, 48, 48);
}

header {
  background: linear-gradient(45deg, rgb(43, 43, 43) 60%, black);
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header h1, header p {
  color: white;
}

main {
  width: 100%;
  flex: 1;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 916px) {
  main {
    margin: 300px 0;
  }
}

footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(45deg, rgb(43, 43, 43) 60%, black);
  width: 100%;
  height: 200px;
  padding: 20px;
  align-items: flex-end;
  justify-content: flex-end;
}
footer p {
  color: white;
}

@media (min-width: 916px) {
  #Dados {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 150px;
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
@media (max-width: 916px) {
  #Dados {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 100px;
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

#Botones {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
#Botones div {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.Boton, .BotonDado {
  font-size: 20px;
  border-radius: 10px;
  padding: 5px 20px;
  cursor: pointer;
  border: none;
  box-shadow: 0px 0px 10px rgb(53, 53, 53);
  font-weight: bold;
  transition: transform 0.15s, box-shadow 0.15s;
}

.Boton:hover, .BotonDado:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 14px rgb(120, 120, 120);
}

.BotonDado:active {
  transform: scale(0.95);
}

.Boton {
  background-color: rgb(122, 122, 122);
  color: white;
}

.Gris {
  background: rgb(80, 80, 80);
}

.Naranja {
  background: rgb(230, 126, 34);
}

.Rojo {
  background: rgb(197, 48, 48);
}

.Verde {
  background: rgb(45, 180, 45);
}

.Azul {
  background: rgb(40, 124, 192);
}

.Purpura {
  background: rgb(142, 68, 173);
}

.VerdeOscuro {
  background: rgb(22, 120, 80);
}

.Oro {
  background: rgb(212, 172, 13);
}

.BotonDado {
  color: white;
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.Dado {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tipo {
  font-size: 24px;
  font-weight: bold;
}

.Dado span {
  font-size: 80px;
  font-weight: bold;
}

.girando {
  animation: girar 1s ease;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1080deg);
  }
}/*# sourceMappingURL=style.css.map */