@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap');

:root{
  --violet:hsl(257, 40%, 49%);
  --soft-magenta:hsl(300, 69%, 71%);
  --white: #ffffff;  
}
html{
    font-size: 16px;
}
*{
    box-sizing: border-box;
}

body{
    margin:0;
    padding:0;
    font-family:'Open Sans', sans-serif;
    color:var(--white);
    display:flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--violet);
    text-align: center;
    color:  var(--white);
    height: 100vh;
}
.header{
    display: flex;
    flex-direction: column;
    width:100%;
    background-image: url("images/bg-mobile.svg");
    background-size:cover;
    background-repeat:no-repeat;
}


.logo{
    height:25px;
    width:120px;
    background-image: url("images/logo.svg");
    background-size:cover;
    background-repeat:no-repeat;
    margin:40px 40px;
}

.main-image{
    background-image: url("images/illustration-mockups.svg");
    background-size:contain;
    background-repeat:no-repeat;
    background-position: center;
    width:80%;
    height: 213px;
    align-self: center;
    margin: 30px 0;
    
    
}

.main{
    margin-top:0;
    max-width: 100%;
    padding:0 30px;
}

.title{
    font-family: 'Poppins', sans-serif;
    font-size:1.5rem;
    line-height:36px;
    font-weight: 600;
}
.description{
    line-height:24px;
}
.button{
    width: 70%;
    height: 40px;
    margin:30px 0;
    border:0;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: var(--violet);
    box-shadow:1px 3px 5px 0 rgba(0,0,0, 26.9%);
}
button:hover{
    background-color:var(--soft-magenta);
    color:white;
    cursor:pointer;
}
.social-icons{
   margin: 30px 0;
}


.fa{
    text-decoration: none;
    color:var(--white);
    width:27.5px;
    height:28px;
    border:solid 0.8px;
    border-radius: 50%;
    padding-top:5px;
}
.fa:hover{
    color:var(--soft-magenta);
}
.fa:nth-of-type(2){
     margin:0 10px;
}

@media screen and (min-width: 767px) {
.logo{
    height:50px;
    width:240px;
}
.main-image{
    width:90%;
    height: 403px;
}
.main{
    padding:0 60px;
}
.title{
    font-size: 2rem;
   
}
.description{
    font-size: 1.5rem;
    line-height: 25.5px;
}
.button{
    height:50px;
    font-size: 1.25rem;
    border-radius: 25px;
}
.social-icons{
    margin: 40px 0;
 }
.fa{
    width:40px;
    height:40px;
    border:solid 1px;
    border-radius: 50%;
    padding-top:10px;
}
.fa:nth-of-type(2){
     margin:0 15px;
}
}

@media screen and (min-width: 1024px) {
    body{
        background-image: url("images/bg-desktop.svg");
        background-size:cover;
        background-repeat:no-repeat;
    }
    .hero{
        display: flex;
      align-items:center;
        align-content: center;
        max-width: 1200px;
    }
    .header{
        background-image: none;
    }
    .logo{
        height:60px;
        width:250px;
    }
    .main-image{
        width:100%;
        height: 493px;
    }
    .main{
        max-width: 45%;
        text-align: left;
        padding-left:40px;
        
    }
    .title{
        font-size: 2.5rem;
        line-height: 60px;
        padding-top: 100px;
    }

    .description{
        font-size: 1.125rem;
        line-height:27px;
    }
    .button{
        width:200px;
    }
    .social-icons{
        align-self: flex-end;
        margin: 50px 100px;
        
    }

}