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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', sans-serif;
}

section {
    width: 100%;
    overflow: hidden;
}

img {
    object-fit: cover;
}

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

body button, body button:hover {
    background-color: transparent;
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 37px;
    line-height: 120.15%;
    color: var(--secondary-color);
    font-weight: 900;
}

h2 {
    font-size: 30px;
    line-height: normal;
    color: var(--secondary-color);
    font-weight: 900;
    background-position: 0 90%, 100% 80%;
    background-size: 100% 10px;
    background-repeat: no-repeat;
}

h3 {
    font-size: 20px;
    line-height: 141%;
    color: var(--secondary-color);
}

p, a, span, i {
    font-size: 16px;
    color: var(--secondary-color);
}

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

        h2 {
            font-size: 35px;
        }

        h3 {
            font-size: 25px;
        }

        p, a, span, i {
            font-size: 18px;
        }
    }

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

            h2 {
                font-size: 40px;
            }

            h3 {
                font-size: 30px;
            }

            p, a, span, i {
                font-size: 20px;
            }
        }