@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap');

/* 
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
 */

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body {
    height: 100vh;
    background-color: hsl(257, 40%, 49%);
    background-image: url(../images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-position: center;
    
}
header {
    height: 19.37vh;
    max-width: 1280px;
    margin: 0 auto;
    
    display: flex;
    align-items: center;
}
main { 
    display: flex;
    max-width: 1280px;
    margin: 45px auto 20px auto ;
    height: 60vh;
}
main img {
    min-width: 44.79%;
    
}
main .right-content {
    margin: 40px 0 0 60px;
}
main .right-content .text-content p {
    max-width: 510px;
    color: #f9ecff; 
    font-size: 1.1em; 
    margin: 30px 20px 30px 0;
}
main .right-content .text-content h1 {
    max-width: 440px;
    font-size: 35px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
main .right-content .button {
    width: 200px;
    height: 60px;
    border-radius: 3em;
    color: hsl(257, 40%, 49%);
    font-size: 1.1em;
    box-shadow: 4px 5px 12px 1px #00000078;
    transition: .1s;
}
main .right-content .button:hover {
    color: #fff;
    background-color: hsl(300, 69%, 71%);
}

footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    max-width: 1280px;
    height: 8vh;
    margin: 0 auto;
}
footer div {
    width: 40px;
    height: 40px;
    border: solid 2px white;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    color: #fff;
    transition: .3s;
}
footer div:hover {
    color: #e882e8;
    border: solid 2px #e882e8;
}
