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

/* Variáveis */
:root {
    --cinzaClaro: #e6e6e6;
    --cinzaMedio: #d9d9d9;
    --cinzaEscuro: #202020;
}

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

html {
    font-size: 16px;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--cinzaEscuro);
}

/* Cabeçalho */
header {
    text-align: center;
}

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

}

header h1 {
    color: var(--cinzaMedio);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 10px 0px 10px 0px;
}

header h2 {
    color: var(--cinzaMedio);
    font-size: 1rem;
    font-weight: 400;
    max-width: 210px;
    margin-bottom: 30px;
}

/* Principal */
main a {
    background-color: orange;
    width: 308px;
    height: 50px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--cinzaClaro);
    text-align: center;
    padding-top: 20px;
    border-radius: 10px;

}

/* Rodapé */
footer{
    margin-top: 40px;
}

footer img{
    margin: 10px;
}
