@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');

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

--heading-fonts: "Poppins", sans-serif;;
--body-fonts: "Open Sans", sans-serif;;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid green; */
}

body {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--Violet);
}

a {
    color: #fff;
}

/* utility class */

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    display: block;
    width: 160px;
    padding: 15px 0;
    background-color: #fff;
    color: var(--Violet);
    border-radius: 50px;
    font-family: var(--body-fonts);
    text-align: center;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 0.4s ease;
}

.btn:hover {
    box-shadow: var(--Soft-Magenta) 0px 7px 29px 0px;}

/* Backgroud SVG Styles */

.desktop-background img, .mobile-background img{
    position: absolute;
    width: 80%;
    height: 100%;
    z-index: -2;
}

.mobile-background img {
    display: none;
}

/* Layout Styles */

main {
    padding: 40px 60px;
}

.logo img {
    width: 200px;
}

.illustration img {
    margin-top: 80px;
    width: 600px;
}

.hero-section {
    height: 470px;
    gap: 50px;
}

main .hero-section .content {
    width: 500px;
}

.content h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-family: var(--heading-fonts);
    font-weight: 600;
    color: #fff;
    line-height: 60px;
}

.content p {
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    font-family: var(--body-fonts);
}

/* Social Links Styles */

.social-links {
    float: right;
    font-size: 25px;
    color: #fff;
}

.social-links i {
    cursor: pointer;
    padding: 10px;
    border: 1px solid white;
    border-radius: 100px;
    margin: 0 20px;
    transition: all 0.4s ease;
}

.social-links i:hover {
    text-shadow: 0 0 10px var(--Soft-Magenta);
}