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

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Poppins', sans-serif;
    background-color: hsl(257, 40%, 49%);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background-image: url("../images/bg-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

nav {
    width: 100%;
    height: 145px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 72px;
}

.logo {
    background-image: url("../images/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 184px;
    height: 50px;
}

.section-body {
    display: flex;
    align-items: flex-start;
    width: 1440px;
    height: 554px;
    margin-top: 48px;
}

.section-illustration {
    background-image: url("../images/illustration-mockups.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 709px;
    height: 506px;
    margin-left: 72px;
}

.section-info {
    display: flex;
    flex-direction: column;
    width: 524px;
    height: auto;
    margin-left: 60px;
    margin-top: 40px;
}

.section-info .heading-text {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: white;
    line-height: 60px;
}

.section-info .abstract {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: white;
    line-height: 28px;
    margin-top: 24px;
}

.section-info .button-cta {
    width: 200px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 40px;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.25);
    color: #6F5F9E;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    margin-top: 24px;
}

.section-info .button-cta:hover {
    cursor: pointer;
    background-color: hsl(300, 69%, 71%);
    color: white; 
}

footer {
    width: 100%;
    height: 101px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-right: 72px;
}

.fb-icon, .tw-icon, .insta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-radius: 40px;
    margin-left: 16px;
}

.fb-icon:hover, .tw-icon:hover, .insta-icon:hover {
    cursor: pointer;
    color: hsl(300, 69%, 71%);
}

@media screen and (max-width: 375px) {
    main {
        width: 375px;
        height: auto;
        background-image: url("../images/bg-mobile.svg");
        background-repeat: no-repeat;
        background-size: contain;
    }

    nav {
        width: 375px;
        height: 90px;
        padding-left: 32px;
    }
    
    .section-body {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 375px;
        height: auto;
        margin-top: 0px;
    }

    .section-illustration {
        width: 300px;
        height: 214.29px;
        margin-left: 0px;
        margin-top: 36px;
    }
    
    .section-info {
        display: flex;
        align-items: center;
        text-align: center;
        width: 375px;
        height: auto;
        margin-left: 0px;
        margin-top: 36px;
    }
    
    .section-info .heading-text {
        width: 274px;
        height: auto;
        font-size: 23px;
        font-weight: 600;
        line-height: 36px;
        padding-top: 30px;
    }
    
    .section-info .abstract {
        width: 300px;
        height: auto;
        font-size: 16px;
        font-weight: 400;
        line-height: 23.52px;
        margin-top: 14px;
    }
    
    .section-info .button-cta {
        width: 194px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        border-radius: 40px;
        box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.25);
        color: #6F5F9E;
        font-size: 12px;
        font-weight: 400;
        margin-top: 14px;
    }

    footer {
        width: 100%;
        height: 90px;
        position: fixed;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-right: 0px;
        bottom: 0px;
    }

    .fb-icon, .tw-icon, .insta-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        width: 30px;
        height: 30px;
        border: 1px solid;
        border-radius: 40px;
        margin-left: 4px;
        margin-right: 4px;
        font-size: 14px;
    }

}

@media screen and (min-width: 1441px) {
    main {
        width: 100%;
        height: 100vh;
    }
}