@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --Violet: hsl(257, 40%, 49%);
    --Soft-Magenta: hsl(300, 69%, 71%);

}
body{
    font-family: "Open Sans", serif;
    width:100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
    

   
    
}
.icon{
    width: 125px;
    margin-bottom: 30px;
}
main{
    width: 1020px;
    padding: 3rem;
    background-image: url(images/bg-desktop.svg);
    background-color: var(--Violet);

}
.head{
    display: flex;
    justify-content: center;
   
}
.imag{
    width: 100%;
}
.title{
    margin-left: 50px;
}
.title h1{
    
    color: white;
    font-size: 25px;
    font-weight: 600;
    width: 250px;
    margin-bottom: 25px;
}
.title p{
    color: hsl(0, 0%, 100%,80%);
    width: 440px;
    margin-bottom: 25px;
}
.title button{
    background-color: white;
    padding: 10px 40px;
    border-radius: 50px;
    color: var(--Violet);

}
.icon-2{
    display: flex;
    justify-content: end;
    margin-right: 20px;
}
.icon-2 li i{
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    text-align: center;
    padding-top: 3px;
    
}

.icon-2 li:nth-child(2){
    margin-left: 10px;
    margin-right:10px;
    
}
footer{
    position: absolute;
    margin: 50px 350px ;
    
}
@media (max-width:460px){
    body{
        display: block;
        width: 460px;
    }
    main{
        width: 460px;
        /* padding: 3rem; */
        background-image: url(images/bg-mobile.svg);
        background-color: var(--Violet);
    
    }
    .head{
        display: block;
       
    }
    .title h1{
        margin-top: 40px;
        text-align: center;
    }
    .title p{
        padding: 0;
        width: 300px;
        margin-right: -35px;
        text-align: center;
    }
    .title button{
       
        background-color: white;
        padding: 7px 80px;
        border-radius: 50px;
        color: var(--Violet);
        margin-left: 30px;
    
    }
    .icon-2{
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    footer{
        position: absolute;
        margin: 50px  ;
        
    }
    

}