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

:root {
    --Violet: hsl(257, 40%, 49%);
    --Soft-Magenta: hsl(300, 69%, 71%);
}

body {
    background-color: var(--Violet);
    background-image: url(images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    color: white;
    font-family: "Open Sans";
}

img {
    max-width: 100%;
    display: block;
}

.headings {
    margin-bottom: 1.25rem;
    font-family: 'Poppins';
    font-size: 3rem;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1440px;
    margin: auto;
}

header {
    padding: 3rem 0;
    margin-bottom: 8rem;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.columns .right p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

.link-btn {
    background-color: white;
    color: var(--Soft-Magenta);
    padding: .75rem 4rem;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 5px 5px 10px 5px #00000062;
    border-radius: 1.5rem;
    transition: all 200ms ease;
}

.link-btn:hover {
    background-color: var(--Soft-Magenta);
    color: white;
}

.social-media-icons {
    margin-top: 2rem;
    font-size: 1.25rem;
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.social-media-icons a {
    color: white;
    text-decoration: none;
    border-radius: 50%;
    outline: 1px solid #fff;
    transition: all 200ms ease;
}

.social-media-icons a:hover {
    color: var(--Soft-Magenta);
    outline: 1px solid var(--Soft-Magenta);
}

.social-media-icons i {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
}

@media screen and (max-width: 768px) {
    body {
        background-image: url(images/bg-mobile.svg);
        background-size: contain;
    }

    header {
        margin-bottom: 2rem;
    }

    .heading {
        font-size: 2rem;
    }

    .columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .column .right p {
        margin-bottom: 3rem
    }

    .link-btn {
        padding: .75rem 5rem;
    }

    .social-media-icons {
        margin-top: 6rem;
        justify-content: center;
    }
}