/* Mobile Version */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

main {
    overflow-x: hidden;
}

img {
    object-fit: cover;
}

figure img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none !important;
}

h1, h2 {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 37px;
}

h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Darker Grotesque', sans-serif;
    color: var(--secondary-color);
}

p {
    font-family: 'Darker Grotesque', sans-serif;
}



    /* Desktop Version */
    @media screen and (min-width: 992px)  {
        h1 {
            font-size: 90px;
        }

        h2 {
            font-size: 70px;
            margin-bottom: 30px;
        }

        h3 {
            font-size: 24px;
        }

        main {
            overflow-x: unset;
        }
    }