/* ESTILOS GERAIS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    height: 100vh;
    font-size: 14px;
}

body{
    background-image: url(img/backgroun-image.jpg);
    height: 100%;
}

.conteiner{
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

a{
    text-decoration: none;
    color: #fff;
}

/* ESTILOS DO HEADER */
header{
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

header img{
    margin-top: 500px;
    max-width: 240px;
    margin-bottom: 20px;
}

header h1{
    margin-bottom: 10px;
    color: #a1272d;
    font-weight: 600;
}

/* ESTILOS BOTÕES */

section.botao-link{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

a.link button{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    background-color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: .2s;
    font-family: 'Times New Roman', Times, serif;
}

a.link button:hover{
    background-color: #a1272d;
    color: #fff;
    transform: scale(0.95);
    box-shadow: 0px 0px 5px #a1272d;
    font-weight: 600;
}

footer{
    text-align: center;
    margin: 30px;
}

footer a.btn-footer{
    background-color: #a1272d;
    color: #fff;
    width: 60px;
    height: 60px;
    display: inline-block;
    line-height: 60px;
    font-size: 2em;
    margin: 0 10px;
    transition: .5s;
    margin-bottom: 50px;
}

footer a.btn-footer:hover{
    transform: scale(0.9);
    background-color: #fff;
    color: #000;
    font-size: 1.5em;
}