body{    
    background-color: hsl(257, 40%, 49%);
    background-image: url("../images/bg-desktop.svg");
    background-repeat: no-repeat;
}

/* Sections */

.logo{
    padding: 3% 5%;
}

.main{
    padding: 2% 5%;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.social {
    float: right;
    text-align: right;
    padding: 1% 5%;
    color: #ffffff;
    text-decoration: none;
}

/* Description Section */

.description {
    padding-top: 5%;
}
.description h1{
    font-size: 2.2rem;
    font-weight: 600;
}

.description p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    padding-bottom: 20px;
}

.button {
    padding: 10px 50px;
    font-size: 0.9rem;
    color: hsl(257, 40%, 49%);
    background-color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0.3em 0.3em 1em rgba(0,0,0,0.3)
}

/* Social Section */

.social a{
    color: #ffffff;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: solid 1px #fff;
    border-radius: 50%;
    margin: 5px;
}

/* Media Mobile */

@media (max-width: 1200px) {
    body {
        text-align: center;
        background-image: url("../images/bg-mobile.svg");
    }
    .main{
        padding: 1% 10%;
    }

    .description h1{
        padding: 50px 0 20px;
        line-height: 1.5;
    }
    .description p{
        font-size: 1.4rem;
        font-weight: 200;
        padding: 0 0 20px 0;
        margin-bottom: 40px;
    }

    .illustration img{
        width: 90%;
    }

    .button {
        padding: 20px 100px;
        font-size: 1.2rem;
        color: hsl(257, 40%, 49%);
        background-color: #ffffff;
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0.3em 0.3em 1em rgba(0,0,0,0.3)
    }

    .social{
        margin-top: 100px;
        float: none;
        text-align: center;
    }
}