@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Inconsolata:wght@200..900&display=swap');

body{
    padding: 0px;
    margin: 0px;
    background-image: url("imagenes/fondo.webp");
    height: 100vm;
    background-repeat: no-repeat;
    background-size: 100%;
}

#abecedario{
    max-width: 80%;
    margin: auto;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.192);
    padding: 25px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    font-family: "Calistoga", serif;
}


#abecedario div{
    font-size: 2em;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.596);
    color: rgb(223, 223, 223);
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
}

#ahorcado{
    max-width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

.boton{
    background-color: rgba(0, 0, 0, 0.836);
    color: rgba(255, 255, 255, 0.918);
    padding: 10px;
    font-size: 2em;
    border: 0px;
    border-radius: 6px;
}
#dibujo{
    display: none;
    margin: auto;
    width: 400px;
    background-color: rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 15px;
    color: white;
    font-size: 3em;
}

#dibujo img{
    height: 200px;
    border-radius: 12px;
    filter: opacity(45%);
}

#letras{
    width: 80%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.192);
    padding: 15px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    font-family: "Calistoga", serif;
    margin-top: 50px;
}

#letras div{
    background-color: rgba(255, 255, 255, 0.582);
    color: black;
    font-size: 5em;
    padding: 6px;
    border-bottom: 8px solid black;
    border-radius: 6px;
    min-height: 80px;
    text-align: center;
}