@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.voltar {
    font-size: 18px;
    margin-top: 0%;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
 }
 

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

#imagem {
    background-image: url("../img/forca.png");
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    margin: 20px auto;
}

#palavra-secreta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.letras {
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 1.2em;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#teclado {
    margin-top: 20px;
}

.teclas button {
    width: 40px;
    height: 40px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    background-color: #fff;
    color: #333;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2em;
}

.teclas button:disabled {
    cursor: not-allowed;
    background-color: #ccc;
    color: #888;
}

#categoria {
    margin-top: 20px;
    color: #333;
    font-size: 1.5em;
}

#recarregar {
    position: fixed;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 50%;
    font-size: 1.5em;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


#recarregar {
    bottom: 90px;
    right: 20px;
}

#jogarNovamente {
    display: none;
    bottom: 30px;
    right: 30px;
    transform: rotate(-90deg);
    transform-origin: left top 0;
}

.modal-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    padding-top: 100px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}




.close{
    color: #000;
    float: right;
    font-size: 2em;
    font-weight: bold;
}

.close:hover, .close:focus{
    color: #fff;
    text-decoration: none;
}




@media (min-width: 321px){
    .teclas button{
        width: 25px;
        height: 25px;
    }
    #categoria{
        font-size: 1.3em;
    }
}

@media (min-width: 376px){
    .teclas button{
        width: 30px;
        height: 30px;
    }
    #palavra-secreta{
        font-size: 1.3em;
    }
    .letras{
        width: 18px;
    }

    #categoria{
        font-size: 1.5em;
    }
}

@media (min-width: 426px){
    .teclas button{
        width: 36px;
        height: 36px;
    }
    #palavra-secreta{
        font-size: 1.5em;
    }
    .letras{
        width: 20px;
    }

    #categoria{
        font-size: 1.6em;
    }
}

@media (min-width: 769px){
    .teclas button{
        width: 68px;
        height: 68px;
        font-size: 2em;
    }
    #palavra-secreta{
        font-size: 2.5em;
    }
    .letras{
        width: 35px;
    }

    #categoria{
        font-size: 2em;
    }
}







/* Estilos para o header */
.header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header-title {
    font-size: 36px;
    margin: 0;
}

.header-description {
    font-size: 18px;
    margin: 10px 0;
}

/* Estilos para o footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.footer-text {
    font-size: 14px;
    margin: 0;
}