body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin-top: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    background-image: url("../img/bg-quiz.png");
    background-size: 100% 100%;
    position: relative;
}

.container {
    text-align: center;
    width: 300px;
}

.main-container {
    width: 97%;
    padding: 5px;
    border: 1px  solid #000;
    border-radius: 10px;
    background-color: #ffffffc7;
}

.language-buttons {
    width: 97%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #ffffffab;
    padding: 3px 8px;
    border-radius: 10px;
}
.language-buttons a{
    padding: 2px 5px;
    text-decoration: none;
    color: blue;
    border: 1px  solid  blue;
    border-radius: 10px;
}

.fruit-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.image-container {
    width: 100%;
    max-width: 200px;
    height: 200px; /* Altura fixa para evitar oscilação */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajusta a imagem dentro da div */
}

.letters-container, .word-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.letter-button, .word-button {
    background-color: #ffd700;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.5em;
    cursor: pointer;
    margin: 5px;
    color: #000;
}

.word-button {
    width: 90%;
    max-width: 300px;
}

.letter-button:hover, .word-button:hover {
    background-color: #ffa500;
    color: #000;
}
/* Garantir que o texto seja sempre visível */
sg-speech-button {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: #000 ;
    background-color: #ffd700 ;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    margin: 5px;
}

sg-speech-button:hover {
    background-color: #ffa500 ;
    color: #000 ;
}

.fruit-icon {
    width: 50px; /* Ajuste o tamanho conforme necessário */
    height: 50px; /* Ajuste o tamanho conforme necessário */
    display: block;
    margin: 0 auto;
}

.flag-icon {
    width: 40px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-right: 5px;
    margin-top: -5px;
    vertical-align: middle;
}
span.icon{
    display: block;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    z-index: 99;
}
.falante{
    width: 100%;
    display: flex;
    align-items: center;
}
.falante img{
    float: right;
    width: 30px;
    margin-top: 10px;
}
.conter{
    width: 250px;
}
a{
    text-decoration: none;
    border: 1px solid blue;
    color: blue;
    padding: 3px  10px;
    border-radius: 10px;
    box-shadow: 3px 3px 3px #979696;
}
/* Estilo responsivo para dispositivos móveis */
@media (max-width: 600px) {
    body {
        background-image: url("../img/bg-quiz-mob.png");
    }
    .container {
        width: 100%;
    }

    .fruit-selection {
        justify-content: center;
    }

    .word-button {
        width: 90%;
        max-width: none;
    }
    .conter{
        width: 90%;
    }
}
