/* Definção de fontes */
@font-face {
    font-family: "Unbounded";
    src: url(../fonts/Unbounded-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* Reset */
*{
    margin: 0;
    padding: 0;
}
/* Estilo desktop */
body{
    background-color: #252525;    
    
}
header img{
    display: block;
    margin: 75px 0 0 360px;
}
h1{
    font-size: 80px;
    font-family: "Unbounded",sans-serif;
    text-align: center;
    margin-top: 60px;
    
}

p{
    font-size: 24px;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 24px auto 0;
    width: 792px;

}

h1, p{
    color: #FFFFFF;
}
h1 span{
    color: #9747FF;
}

a{
    font-size: 24px;
    text-decoration: none;
    font-family:"Poppins",sans-serif;
    color: #FFFFFF;
    background-color: #9747FF;
    width: 340px;
    height: 66px;
    display: block;
    text-align: center;
    line-height: 66px;
    border-radius: 33px;
    margin: 40px auto;

}

a:hover{
    background-color: #8233E8;

}

section img{
    display: block;
    width: 792px;
    height: 446px;
    margin: 0 auto;
}
/* Modelo tablet  */
@media(max-width: 768px){
    header img{
        margin: 65px 0 0 60px;
    }
    
    p{
        width: 648px;
    }
}
/* Modelo celular  */
@media(max-width: 767px){
    header img{
        margin: 32px 0 0 16px;
    }
    h1{
        font-size: 40px;
    }
    p{
        font-size: 20px;
        width: 340px;
    }
    a{
        font-size: 20px;
        width: 251;
    }
    section img{
        width: 340px;
        height: 230px;
    }

}