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

img {
    display: block;
}

body {
    background-image: url('./images/bg-mobile.svg');
    background-repeat: no-repeat;
    background-color: hsl(257, 40%, 49%);
    padding: 3rem;
}

header > img {
    width: 150px;
    height: auto;
}

main {
    display: flex;
    flex-flow: column nowrap; 
    margin-top: 3rem;
    align-items: center;
}

.description {
    text-align: center;
    color: #fff;
    margin-top: 4rem;
    width: 311px;
    
}

.description > h1 {
    font-family: 'Poppons', sans-serif;
    font-weight: 600;
    line-height: 2rem;
}

.description > p {
    margin-top: 1rem;
    line-height: 1.5rem;
    font-family: 'Open sans', sans-serif;
}

button {
    margin-top: 2rem;
    padding: 1rem 5.5rem;
    border-radius: 35px;
    border: none;
    color: hsl(257, 40%, 49%);
    font-family: 'Poppins', sans-serif;
}

.image-container {
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 17.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-icons {
    display: flex;
    margin-top: 4rem;
    gap: 1rem;
}

.facebook-logo, .twitter-logo, .instagram-logo {
    width: 20px;
    height: 20px;
    filter: invert(100%) sepia(1%) saturate(2%) hue-rotate(137deg) brightness(109%) contrast(101%);
}

@media (min-width:1440px) {
    main {
        flex-flow: row nowrap;
        justify-content: center;
        gap: 2rem;
        position: relative;
        height: 65vh;
        align-items: flex-start;
    }


    main > img {
        width: 710px;
        height: auto;
        margin-top: 4rem;
    }

    main > .description {
        width: 603px;
        margin-top: 8rem;
    }

    .description {
        margin-top: 0;
        text-align: left;
    }

    .description > h1 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .social-media-icons {
        margin-top: 2rem;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

button:hover {
    cursor: pointer;
    background-color: #e882e8;
    color: #fff;
}

.image-container:hover {
    cursor: pointer;
    border-color: #e882e8;
}
.facebook-logo:hover, .twitter-logo:hover, .instagram-logo:hover {
    cursor: pointer;
    filter: invert(70%) sepia(22%) saturate(3205%) hue-rotate(244deg) brightness(104%) contrast(82%);
}

.attribution {
    color: #fff;
    font-size: 11px;
    text-align: center;
    margin-top: 2rem;

}

.attribution a {
    color: #e882e8;
}