/* Define o background azul da página e centraliza o conteúdo */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ec313a;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}

/* Estiliza o container central */
.container {
    text-align: center;
    color: white;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Estiliza a imagem com borda circular branca */
.circular-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-bottom: 20px;
    padding: 4px;;
}

h1, h2, h3{
    margin: -8px;
}

a {
    text-decoration: none;
}

a img {
    height: 32px;
    vertical-align: middle;
}

.content .message {
    margin: 32px 0 16px 0;
    border-radius: 9px;
    border: dashed 1px #FFF;
padding: 16px;
}

/* Estiliza os botões */
.buttons a {
    width: 75%;
    padding: 15px;
    margin: 10px 0;
    border: solid 2px #FFF;
    background-color: white;
    color: #ec313a;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: left;
}

/* Efeito hover para os botões */
.buttons a:hover {
    transition: background-color 0.3s;
    background-color: #ec313a;
        border: solid 2px #FFF;
    color: white;
}


.footer {
    margin-top: 24px;
    font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    .circular-image {
        width: 120px;
        height: 120px;
    }

    .buttons button {
        font-size: 16px;
        padding: 12px;
    }
}
