* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family: 'Roboto', 'arial';
}

body{
    background: rgb(238,174,202);
    background: linear-gradient(90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    overflow: hidden; /* Evita el scroll mientras se muestra el preloader */
}

.logo-github{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    flex-direction: column-reverse;
    color: #fff;
    gap: 5px;
}

.container{
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.game{
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.game h2{
    margin-bottom: 50px;
}

.numero_entrada{
    border-radius: 5%;
    border: none;
    outline: none;
    height: 30px;
    font-size: 1rem;
    caret-color: rgba(238,174,202,1);
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.479);
}

.numero_entrada::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.btn{
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    padding: 10px;
}

.line{
    width: 100%;
    height: 2px;
    background: #fff;
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238,174,202,1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader::before {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}