@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
    box-sizing: border-box;
}
body{
    background-image: url(./images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-color:hsl(257, 40%, 49%);
    background-size: cover;
    display: flex;
    margin: 0;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: #fafafa;
    font-weight: 400;
}
img{
    max-width: 100%;
}
.container{
    margin: auto;
    max-width: 100%;
    width: 1200px; 
}
h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
}
p{
    opacity: 0.8;
}

.main{
    display: flex;
    margin: 100px 0;
}

.main >div:first-child{
    flex: 0.6;
    margin-right: 20px;
}
.main > div:last-child{
    flex: 0.4;
    margin-left: 20px;
}

button{
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
    padding: 20px 80px;
    font-size: 24px;
    color: hsl(257, 40%, 49%);
}

.icon{
    display: flex;
    justify-content: flex-end;
    padding: 0;
    list-style-type: none;


}
.fab{
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media screen and (max-width:780px){
    .main{
        flex-direction: column;
        margin: 50px 0;
    }
    .main >div:first-child{
        flex: 1;
        margin-right: 0;
    }
    .main > div:last-child{
        flex: 1;
        margin-left: 0;
        text-align: center;
    }
    .icon{
        justify-content: center;
    }
}