* {
    box-sizing: border-box;
}

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

body {
    overflow: unset !important;
    position: unset !important;
}

main {
    padding-top: 108px;
}

img {
    object-fit: cover;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Neulis Cursive';
    text-transform: uppercase;
    line-height: 1.2;
}

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

h1 {
    font-size: 30px;
    font-weight: 600;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-size: 17px;
    font-weight: 600;
}

h4 {
    font-size: 15px;
    font-weight: 600;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        main {
            padding-top: 110px;
        }

        h1 {
            font-size: 40px;
        }

        h2 {
            font-size: 28px;
        }

        h3 {
            font-size: 18px;
        }

        h4 {
            font-size: 16px;
        }

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


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            main {
                padding-top: 0;
            }

            h1 {
                font-size: 50px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 19px;
            }

            h4 {
                font-size: 17px;
            }

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