

*, ::after, ::before {
    box-sizing: border-box;
    font-family: inter,sans-serif;
}

  .contenedor-app {
    display: flex;
    height: 85vh;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    padding-bottom: 100px;
}
.contenedor-nombre-sorteo {
    display: flex;   
    justify-content: center;
    gap: 20px;
  }
  .info {
    border: none;
    background: none;
    color: black;
  }
  .info:hover, .info:active {
    color: black;
    background: none;
    transform: scale(1.2);
  }
  .info svg {
    width: 18px;
    height:30px;
  }
  .h1Sorteo {
    font-weight: bold;
    font-size: 2.2rem;
}
  .contenedor-text {
    margin-top: 80px;
    text-align: center;
    font-size: 20px;
}
.subtitulo {
    font-size: 1.1rem;
    color: #6e6d81;
}
.contenedor-svg {
    border-radius: 7px;
    padding:12px;
    margin-bottom: 10px;
    color: rgb(120, 126, 2);
    font-weight: bold;
    background-color: rgb(247, 243, 131);
    display: inline-block;
    width: fit-content;    
}
.container {
    background-color: #ffffff;
    width: 270px;
    padding: 20px;
    box-shadow: 15px 30px 35px rgba(0,0,0,0.1);
    -webkit-perspective: 300px;
    perspective: 300px;
}
.resultados {
    text-align: right;
    color: #101020;
    font-weight: bold;
    line-height: 25px;
}
.moneda {
    height: 150px;
    width: 150px;
    position: relative;
    margin: 50px auto;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.moneda img {
    width: 150px;
}
.cara, .cruz {
    position: absolute;
    width: 100%;
    height: 100%;
    top:auto;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.cruz {
    transform: rotateX(180deg);
}
@keyframes girar-cruz {
    0% {
        transform: rotateX(0);
    }
    100% {
        transform: rotateX(1980deg);
    }
}
@keyframes girar-cara {
    0% {
        transform: rotateX(0);
    }
    100% {
        transform: rotateX(2160deg);
    }
}

.contenedor-botones {
    display: flex;
    justify-content: space-between;
}
.contenedor-botones button, ul button {
    width: 100px;
    padding: 10px 0;
    border: 2.4px solid #424ae0;
    border-radius: 5px;
    cursor:pointer;
    font-size: 12px;
}
#btn-girar {
    background-color: #424ae0;
    color:#ffffff;
}
#btn-girar:disabled {
    background-color: #e1e0ee;
    border-color: #e1e0ee;
    color: #101020;
}
#btn-reiniciar {
    background-color: #ffffff;
    color: #424ae0;
}

.comoFunciona {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 13vh;
}
.comoFunciona h1 {
  font-weight: bold;
  font-size: 2.4rem;
}
.comoFunciona ul {
  font-size: 1rem;
}
ul li {
    margin-top: 10px;
    letter-spacing: 0.2px;
    font-size: 1.2rem;
}


@media only screen and (min-width: 575px) {
    .container {
        width: 450px;
        padding: 30px;   
    }
    .contenedor-botones {
        display: flex;
        justify-content: space-evenly;
    }
}
@media only screen and (min-width: 1000px) {
    .container {
        width: 600px;
    }
    .contenedor-botones {
        display: flex;
        justify-content: space-evenly;
    }
    .comoFunciona {
        margin-top: 21vh;
    }
}
  