/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis para Cores */
:root {
    --preto: #000000;
    --branco: #ffffff;
    --cinza: #CCCCCC;
    --vermelho: #FF0000;
}

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    font-family: "Inknut Antiqua", serif;
    background-image: url('img/fundo1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Cabeçalho */
header img {
    width: 100px;
    height: 100px;
    margin-top: 50px;
    border-radius: 50%;

}

/* Principal */

main {
    text-align: center;
}

main h1 {
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--preto)
}

main p {
    max-width: 300px;
    margin-bottom: 30px;
    margin-top: -19px;
    font-size: 0.80rem;
    font-weight: 100;
    color: var(--preto)
}

/* Links */

.container>a {
    text-decoration: none;
    color: var(--preto);
    background-color: var(--branco);
    width: 320px;
    height: 60px;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 8px;
    border-radius: 100px;
}

/* Rodapé */

footer {
    margin-top: 20px;
    justify-content: center;
    display: flex;
    gap: 20px;
}

.footer.a1 {
    color: var(--vermelho);
    font-weight: bold;
}


