@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --violet: hsl(257, 40%, 49%);
    --soft-magenta: hsl(300, 69%, 71%);

    /* Typography */

    /* Headings */
    --font-heading: 'Poppins', sans-serif;

    /* Body */
    --font-body: 'Open Sans', sans-serif;

    /* Font weight */
    --font-weight-400: 400;
    --font-weight-600: 600;

    /* Font Color */
    --white: hsl(0, 0%, 100%);
}

body {
    background-color: var(--violet);
    font-family: var(--font-body);
    font-weight: var(--font-weight-400);
    height: 100vh;
    color: var(--white);
}

main {
    height: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%; 
    text-align: center;
}

.btn {
    background-color: var(--white);
    color: var(--violet);
    height: 40px;
    width: 200px;
    border-radius: 20px;
    margin-top: 20px;
    border: var(--white);
    filter: drop-shadow(5px 5px 10px #000000);
}

.btn:hover {
    background-color: var(--soft-magenta);
    color: var(--white);
}

.header__illustration-container {
    background-image: url('./assets/images/bg-mobile.svg');
    background-size: cover;
    height: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header__logo {
    width: 120px;
    height: 20px;
    margin-top: 25px;

    position: fixed;
    top: 0;
    left: 19px;
}

.header__illustration {
    width: 296px;
    height: 209px;
}

.hero__text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 30px;
}

.hero__text-container h1 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-600);
    margin-top: 20px;
}

.hero__text-container p {
    margin-top: 10px;
    font-weight: var(--font-weight-400);
}

.section__social-media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.section__social-media-container i {
    font-size: 30px;
    margin: 0 10px;
}

.section__social-media-container i:hover {
    color: var(--soft-magenta);
}

@media screen and (min-width: 976px) {
    body {
        background-image: url('./assets/images/bg-desktop.svg');
        background-size: cover;
    }

    main {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px;
    }

    .header__illustration-container {
        background-image: none;
    }

    .header__logo {
        width: 165px;
        height: 32px;
        margin-top: 40px;
    }

    .header__illustration {
        width: 696px;
        height: 493px;
    }

    .hero__text-container {
        display: block;
        text-align: left;
    }

    .section__social-media-container {
        position: fixed;
        bottom: 0;
        right: 19px;
        margin-bottom: 30px;
    }
}