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

:root {
  --principal: #89939e;
  --secundario: #dedede;
  --negro: #000;
  --blanco: #fff;
}

body {
  font-family: "Inknut Antiqua", serif;
}

a {
  text-decoration: none;
}

.principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-around;
}

.botonesHome {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.myBtn {
  padding: 1em;
  height: 4em;
  width: max-content;
  text-align: center;
  position: relative;
  border: 1px solid black;
  transition: ease-in-out 0.5s all;
  border-radius: 10px;
  line-height: 1.2em;
  margin: auto;
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.myBtn::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0px -17px var(--principal);
  box-shadow: inset 0px -17px var(--secundario);
  border-radius: 5px;
  transition: ease-in-out 0.25s all;
}

.myBtn:active {
  box-shadow: 0px 0px 0px #a5a5a5, -1px -1px 10px #e2e2e2,
    inset 5px 5px 10px #b5b5b5, inset -5px -5px 5px #ffffff;
  line-height: 2em;
}

.myBtn:active::after {
  box-shadow: inset 0px -4px var(--principal);
}

/* body {
  overflow: auto;
  background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
   background-attachment: fixed; 
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}  */

/* .wave {
  background: rgba(43, 28, 28, 0.277);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 3em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
} */

.rotate {
  animation: rotation 27s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.instrucciones {
  margin: 2em;
  padding: 2em;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: inset 0px -17px var(--negro);
}

#mensaje {
  height: 55px;
}
.mensaje {
  padding: 0 0 1.2em 0;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: inset 0px -17px var(--negro);
  -webkit-animation: fadeinout 2s linear forwards;
  animation: fadeinout 2s linear forwards;
}

.instrucciones h2 {
  text-align: center;
}

.circuloPicker {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 5em;
  height: 5em;
  border: none;
  cursor: pointer;
}

.circuloPicker::-webkit-color-swatch {
  border-radius: 50%;
  border: 1px solid #000000;
  /* background: radial-gradient(circle at 5px 5px, #fff, transparent); */
}
.circuloPicker::-moz-color-swatch {
  border-radius: 50%;
  border: 1px solid #000000;
}

.cajaColoresBasic {
  display: flex;
  justify-content: space-around;
}
.cajaColoresBasic p {
  margin-bottom: 0;
}

.borderError {
  border: 1px solid red;
}

.bordeCircular {
  width: 5em;
  height: 5em;
  border: none;
  cursor: pointer;
  border-radius: 50%;
}

#tabla tr td {
  border: 1px solid black;
  padding: 1em;
  text-align: center;
}

.fondoBlanco {
  background-color: var(--blanco);
}
tr {
  height: 3.5em;
}

@-webkit-keyframes fadeinout {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeinout {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.cajaResultado {
  margin: 2em;
  padding: 2em;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: inset 0px -17px var(--negro);
  text-align: center;
}

.divBtnResult {
  display: flex;
  padding: 2em 0;
}

.iconosVerificacion {
  background-color: var(--blanco);
  border-radius: 50em;
}
