* {
    box-sizing: border-box;
}

body { 
    font-family: Arial; 
    text-align: center; 
    background-color: #f0f0f0; 
    margin: 0; 
    padding: 20px; 
    background-image: url('../img/jogotela.jpeg'); 
    background-size: cover; 
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-y: hidden;
}

h1 { 
    color:#f0f0f0; 
    font-size: 42px; 
    margin-bottom: -20px; 
    font-family: cursive; 
}

.titulo1{
    margin-bottom: 20px;
}

p { 
    color: white; 
    font-size: 21px; 
    margin: 1px; 
}

input { 
    padding: 10px; 
    font-size: 16px; 
    margin: 10px; 
    width: 200px; 
    border: 2px solid #bdbdbd; 
    border-radius: 5px; 
}

input:focus { 
    border-color: #007bff; 
    outline: none; 
}

button { 
    padding: 10px; 
    font-size: 16px; 
    background-color: #bdbdbd; 
    color: black; 
    border: none; 
    border-radius: 5px; 
    margin: 1px; 
    cursor: pointer; 
}

button:hover { 
    background-color: #9e9e9e; 
}

button:disabled { 
    background-color: #ccc; 
    cursor: not-allowed; 
}

#mostrar-palavra { 
    font-size: 24px; 
    letter-spacing: 5px; 
    margin: 20px; 
    font-weight: bold; 
}

#teclado { 
    width: 600px; 
    margin: auto; 
    flex-wrap: wrap; 
    display: flex; 
    justify-content: center; 
}

#teclado button { 
    width: 40px; 
    height: 40px; 
    font-size: 18px; 
    background-color: #bdbdbd; 
    margin: 5px; 
}

#teclado button:disabled { 
    background-color: #808080; 
    color: #fff; 
} 

#mensagem-jogo { 
    font-size: 20px; 
    margin: 20px; 
    color: #28a745; 
    font-weight: bold; 
}

.mensagem-erro { 
    color: #dc3545; 
    display: none; 
    margin-top: 10px; 
}

#forca-canvas { 
    max-width: 100%; 
    height: auto; 
}

#hora { 
    color: white; 
    font-size: 18px; 
}

#overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center; 
    align-items: center;
}

#overlay-content {
    background: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

#titulo-resultado.win { 
    color: green; 
}

#titulo-resultado.lose { 
    color: red; 
}

@media (max-width: 600px) {
    #teclado { 
        width: 100%; 
    }

    #teclado button { 
        width: 30px; 
        height: 30px; 
        font-size: 14px; 
        margin: 3px; 
    }

    input { 
        width: 80%; 
        max-width: 200px; 
    }

    h1 { 
        font-size: 24px; 
    }

    p { 
        font-size: 16px; 
    }

    #forca-canvas { 
        width: 250px; 
        height: 250px; 
    }

    body { 
        padding: 10px; 
    }
}