/* esto es un comentario */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0.726015406162465) 0%, rgba(159,192,231,1) 100%, rgba(159,192,231,1) 100%);
    width: 100%;
}

.container {
    /* tamaño de la fuente*/
    font-size: 16px;
    /* color de fondo*/
    background-color: white;
    /* tamaño del contenedor */
    width: 90vh;
    /* tamaño maximo */
    max-width: 34em;
    /* posicion*/
    position: relative;
    transform: translate(90%, 30%);
    padding: 3em;
    border-radius: 20px;
    box-shadow: 0 1.2em 2.4em rgba(0, 0, 0, 0.25);

}

#options-container {
    text-align: center;
}

#options-container div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1.6em 0 2.4em 0;
}

/* estilos cunado el boton esta desactivado*/
#options-container button:disabled {
    border: 3px solid #666665;
    color: grey;
    background-color: #efefef;
}

/* estilos cuando el boton este activado*/
#options-container button:active {
    background-color: #8c52ff;
    border: 3px solid black;
    color: white;
}

.letter-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6em;
}

.letter-container button {
    height: 2.4em;
    width: 2.4em;
    border-radius: 0.3em;
    background-color: white;
    cursor: pointer;
}

.new-game-popup {
    background-color: white;
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

#user-input-section {
    display: flex;
    justify-content: center;
    font-size: 1.8em;


    /* arriba, derecha,abajo,izq*/
}

canvas {
    display: block;
    margin: auto;
    border: 10px solid rgb(61, 61, 98);
    border-radius: 10px;
}

.hide {
    display: none;
}

#result-text h2 {
    font-size: 1.8em;
    text-align: center;
    margin-top: 10px;
}

#result-text p {
    font-size: 1.25em;
    margin: 1em 0 2em 0;
}

#result-text span {
    font-weight: 600;
    margin-top: 10px;
}

#new-game-button {
    font-size: 1.25em;
    padding: 0.5em 1em;
    background-color: #8c52ff;
    color: white;
    border: 3px solid black;
    border-radius: 0.2em;
    cursor: pointer;
   
    /* probar cuando aparezca el boton*/
}
#new-game-button:hover{
    transition: 4s ;
}

.win-msg {
    color: green;
}

.lose.msg {
    color: red;
}