
/* Reset */
* {
    margin: 0;
    padding: 0;
    
}

/* Estilo Desktop */
body {
    background-color:#0E1014;
    color: #ffffff;
  
}

header img{
    display: block;
    margin: 75px 0 0 360px;
}

h1 {
    font-size: 64px;
    font-family: 'unbounded', sans-serif;
    text-align: center;
    margin-top: 60px;;
}

h1 span{
    color: #9747FF;
  
}

p{
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 24px auto 0;
    width: 792px;
}


a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-decoration: none;
    background-color: #9747FF;
    width: 340px;
    height: 66px;
    display: block;
    text-align: center;
    border-radius: 36px;
    line-height: 66px;
    margin: 40px auto;
}

a:hover {
    background-color: #8233E8;

}

section img {
    display: block;
    width: 792px;
    height: 446px;
    margin: 0 auto;

}

/* Estilo Tablet */

@media (max-width: 768px) {
    header img {
        margin: 65px 0 0 60px;
    }

    h1 {
        font-size: 60px;
        width: 90%;
    }

    p {
        font-size: 20px;
        width: 90%;
    }

    a {
        width: 280px;
        height: 56px;
        line-height: 56px;
        font-size: 20px;
    }

    section img {
        width: 90%;
        height: auto;
    }
}


/* Estilo Mobile */
@media (max-width: 375px) {
    header img {
        margin: 32px 0 0 16px;
    }

    h1 {
        font-size: 40px;
        width: 90%;
    }

    p {
        font-size: 18px;
        width: 341px;
    }

    a {
        width: 250px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
    }

    section img {
        width: 340px;
        height: 230px;
    }
}

