:root {
    --quadro-font: "Abel", sans-serif;
    --font-padrao: "Open Sans", sans-serif;
    --color-default: #5a56c5;
    --color-acertou: #4be71c;
    --color-errou: #ff0000;
    --color-quadro: #0c4e0c;
    --color-quadro-border: #c48a3f;
    --color-colum: #e7e7e7;
}

#mensagem{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   background-color: var(--color-default);
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 22;
}

.mensagem_container {
    width: 100%;
    max-width: 35rem;
    padding: 0.65rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mensagem_container h2 {
    color: yellow;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.mensagem_container img {
    width: 17rem;
    margin-bottom: 1.6rem;
}

.mensagem_container p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6em;
    text-align: justify;
    text-align: center;
    margin-bottom: 1rem;
}

.mensagem_container button {
    padding: 1rem;
    border: none;
    width: 15rem;
    color: #fff;
    border-radius: 0.65rem;
    font-size: 1.7rem;
    background-color: #0c4e0c;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.322);
}

.mensagem_container button:hover {
    background-color: #116811;
    color: #b7c2b7;
}