*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #b30000;
}

header#cabecalho-principal{
    background-color: #dddddd;
    width: 100vw;
    height: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pontuacao-game{
    background-color: #61b1ea;
    border-radius: 30px;
    padding: 10px;
    color: white;
    padding: 5px 50px;
    font-size: 20px;
    margin-left: 15px;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

#pontuacao-game img{
    margin-right: 15px;
    height: 20px;
}

#nome-jogo{
    font-weight: bold;
    font-size: 27px;
    margin-right: 20px;
}

section#corpo{
    display: flex;
    margin-top: 15px;
}

section#corpo div#esquerda{
    color: white;
    display: flex;
    flex-direction: column;
    width: 60%;
    align-items: center;
}

section#corpo div#esquerda div#cor-atual{
    height: 200px;
    width: 200px;
    border: 10px solid black;
    border-radius: 15px;
    margin-top: 10px;
}

section#corpo div#esquerda button#btn-responder{
    background-color: transparent;
    color: white;
    padding: 15px 45px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
}

#direita img{
    height: 390px;
}

div#container footer#rodape{
    background-color: rgb(26, 26, 32);
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rodape img{
    height: 90px;
}