:root{
    --violet: hsl(257, 40%, 49%);
    --soft-magenta: hsl(300, 69%, 71%);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--violet);
    background-image: url(../images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    width: 100%;
    height: 100vh;
}
.container{
    width: 90%;
    height: 100%;
    margin: 0 auto;
}
.logo{
    padding: 3% 0;
    width: 20%;
    height: auto;
}
.logo__img{
    width: 100%;
}
.content{
    display: flex;
    flex-direction: row;
    padding: 3em 0 0 0;
}
.content__figure{
    width: 80%;
}
.content__img{
    width: 100%;
}
.conten__info{
    width: 50%;
    margin: 4em 0 0 2em;
    color: white;
}
.content__info-title{
    padding-bottom: 1.6em;
}
.title{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 2.2rem;
    line-height: 1.4em;
    font-weight: 600;
}
.content__info-text{
    padding-bottom: 3em;
    font-weight: 400;
}
.btn{
    background-color: white;
    color: var(--violet);
    padding: .8em 3.6em;
    border-radius: 4em;
}
.redes{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0 0 2em 0;
}
.redes span{
    border-radius: 50%;
    border: 1px solid white;
    margin: 0 .4em;
}
.redes i{
    color: white;
    padding: .6em;
}
@media (max-width:900px) and (min-width:480px){
    .logo{
        width: 40%;
    }
    .content{
        flex-direction: column;
    }
    .content__figure{
        width: 100%;
    }
    .conten__info{
        width: 100%;
        margin: 3em 0;
        text-align: center;
    }
    .title{
        font-size: 2.6em;
    }
    .content__info-text{
        font-size: 1.4em;
    }
    .redes{
        justify-content: center;
    }
}
@media (max-width:480px) and (min-width:320px){
    body{
        background-image: url(../images/bg-mobile.svg);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
    }
    .container{
        padding: 0 1.4em;
    }
    .logo{
        width: 40%;
        padding: 10% 0;
    }
    .content{
        flex-direction: column;
        padding: 2em 0;
    }
    .content__figure{
        width: 100%;
    }
    .conten__info{
        width: 100%;
        margin: 3em 0;
        text-align: center;
    }
    .title{
        font-size: 1.6em;
    }
    .content__info-text{
        font-size: 1em;
    }
    .btn{
        padding: .8em 6.6em;
    }
    .redes{
        justify-content: center;
        padding-bottom: 4em;
    }
}