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

/* Váriaveis para cores */
:root {
    --Branco: #d9d9d9;
    --Preto: #000000;
    --Marrom: #3A1616;
    --Cinza: #949494;
}

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    align-items: center
}

body {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    background-color: var(--Cinza);
    
    
}

header img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-top: 60%;
}

main{
    text-align: center;
    color: var(--Branco);
}

main h1 {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 1.5rem;
    
}

main p {
    margin-bottom: 30px;
}



footer {
    margin-top: 70px;
}

.container > a {
    text-decoration: none;
    background-color: var(--Branco);
    color: var(--Preto);
    width: 220px;
    height: 30px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 50px;
    padding-top: 7px;
}

footer img {
    margin: 0px 7px;
}