/* Mobile Version */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    background-color: var(--primary-color);
    text-wrap: balance;
    color: var(--opposite-color);
}

figure img {
    width: 100%;
    height: 100%;
}

img {
    object-fit: cover;
}

body button,
body button:hover {
    background-color: transparent;
    font-family: "Inter", sans-serif;
}

section .section-container,
header .header-container,
footer .footer-container {
    max-width: 1520px;
    margin: 0 auto;
}


h1, h2 {
    font-weight: 500;
    line-height: 1.2;
    background: var(--title-gradient);
    background-clip: text;
    color: transparent;
}

h1 span,
h2 span {
    color: var(--blue);
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3, h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

p, li {
    font-weight: 400;
    line-height: 1.5;
    font-size: 14px;
    color: var(--grey);
}

a {
    text-decoration: none;
    color: var(--grey);
    font-size: 14px;
    display: block;
    width: max-content;
    font-weight: 500;
    transition: all 0.3s ease;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        h1 {
            font-size: 45px;
        }

        h2 {
            font-size: 28px;
        }

        h3, h4 {
            font-size: 17px;
        }

        p, li, a {
            font-size: 15px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            h1 {
                font-size: 60px;
            }

            h2 {
                font-size: 32px;
            }

            h3, h4 {
                font-size: 18px;
            }

            p, li, a {
                font-size: 16px;
            }
        }