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

html {
    scroll-behavior: smooth;
    font-family: "Nunito Sans", sans-serif;
}

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

img {
    object-fit: cover;
}

body button,
body button:hover {
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}

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

h1, h2 , h3, h4 {
    font-family: "Coiny", system-ui;
    color: var(--title-color);
    line-height: 1.2;
    text-wrap: balance;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

h3, h4 {
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    color: black;
    text-wrap: initial;
    font-weight: 650;
}

p, li, a {
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
}

a {
    text-decoration: none;
    display: block;
    width: max-content;
    line-height: 1;
    transition: all 0.3s ease;
}


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

        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: 50px;
            }

            h2 {
                font-size: 32px;
            }

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

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