* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

 html {
    height: 100vh;
    font-size: 14px;
 }

 body{
    background-color: var(--cor3-fundo);
    height: 100%;
 }

 a{
    text-decoration: none;
    color: var(--cor4-branco);
 }

 @font-face{
   font-family: "Principal";
   src: url(hidayatullah\ DEMO.ttf);

}

:root{
   /* VARIÁVEIS CSS */
   --cor1-principal: #A800EB;
   --cor2-texto: #3e3e3e;
   --cor3-fundo: #f2f2f2;
   --cor4-branco: #fff;
   --cor5-preto: #000;
   --fonte-destaque: Principal;
   --fonte-texto: Poppins, 'Segoe UI';
}

 .degrade{
    background: linear-gradient(to right, rgb(0, 0, 0), var(--cor1-principal));
 }

 .topo{
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: var(--cor4-branco);
 }

 /*Estilo Header*/

 header{
    text-align: center;
    margin-bottom: 32px;
 }

 header img{
    max-width: 150px;
    margin-bottom: 20px;
 }

 header h1{
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--cor1-principal);
    font-weight: 300;
    border-radius: 10px;
 }

 header p{
   font-size: 1.7em;
   margin-bottom: 10px;
   color: var(--cor5-preto);
 }

 /*Estilo dos botões*/

 section.botoes-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
 }

 a.link button{
    width: 500px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;       
    cursor: pointer;
    color: var(--cor4-branco);
    transition: 1.2s;
 }

 a.link i{
    font-size: 1.5em;
 }

 a.link button:hover, footer a.btn-footer:hover{
    transform: scale(1.05);
 }

 /*Estilo do Rodapé*/

 footer{
    text-align: center;
    margin: 30px;
 }

 footer a.btn-footer{
    width: 60px;
    height: 60px;
    display: inline-block;
    font-size: 2em;
    line-height: 60px;
    border: 50%;
    margin: 0px 10px;
    transition: .2s;
    border-radius: 30px;
 }
