@font-face {
    font-family: 'Ogg-Roman';
    src: url("fonts/Ogg-Roman.eot");
    src: local("☺"), url("fonts/Ogg-Roman.woff") format("woff"), url("fonts/Ogg-Roman.ttf") format("truetype"), url("fonts/Ogg-Roman.svg") format("svg");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Architectural';
    src: url("../fonts/Architectural.eot");
    src: url("../fonts/Architectural.eot?#iefix") format("embedded-opentype"), url("../fonts/Architectural.woff2") format("woff2"), url("../fonts/Architectural.woff") format("woff"), url("../fonts/Architectural.ttf") format("truetype"), url("../fonts/Architectural.svg#Mathline") format("svg");
    font-weight: normal;
    font-style: normal;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    height: 100vh;
    font-size: 14px;
}

body{
    background: linear-gradient(300deg, rgba(0,0,2,1) 0%, rgba(18,18,18,1) 100%);
    height: 100%;
}

.container{
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 20px;
    color: #fff;
}

p{
    font-size: 18px;
    font-weight: 400;
}

/*p span {
    font-weight: 600;
}*/

a{
    text-decoration: none;
    color: #fff;
}

.degrade{
    background: linear-gradient(95deg, rgba(93,53,8,1) 0%, rgba(194,145,46,1) 100%);
}

/* ESTILO DO HEADER */

header{
    text-align: center;
    margin-bottom: 40px;
}

header img{
    max-width: 90px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 1px solid #c2912e;
}

header h1{
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 400;
    font-family: 'Ogg-Roman';
}
header p {
    font-size: 1.5em;
    font-family: 'Ogg-Roman';
}

/* ESTILO DOS BOTÕES */

section.botoes-links{
    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;
    border-radius: 0px;
    font-size: 1.2em;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    color: #fff;
    transition: .2s;
}

a.link i{
    font-size: 1.5em;
}

a.link button:hover, footer a.btn-footer:hover{
    transform: scale(1.05);
}

/* ESTILO DO FOOTER */

footer{
    text-align: center;
    margin: 30px;
}

footer a.btn-footer{
    width: 60px;
    height: 60px;
    display: inline-block;
    font-size: 2em;
    line-height: 60px;
    border-radius: 0;
    margin: 0 10px;
    transition: .2s;
}

/*ESTILO RESPONSIVO*/
@media screen and (max-width: 480px) {
    a.link button{
        font-size: 1.1em;
    }
    footer a.btn-footer {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
        line-height: 43px;
        margin: 0 5px;
    }
}