@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

:root {
    --primary: #FCFCFC;
    --secondary: #364B44;
    --accent: #3a7d6d;
    --small: 1rem;
    --medium: 1.5rem;
    --big: 2.5vw;
    --large: 3.15rem;
    --small-mobile: 14px;
    --medium-mobile: 16px;
    --big-mobile: 26px;
    --large-mobile: 36px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    color: var(--secondary);
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--primary);
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-size: var(--large);
    font-weight: 900;
}

h2 {
    font-size: var(--big);
    font-weight: bold;
}

h3 {
    font-size: var(--medium);
    font-weight: 400;
}

h4 {
    font-size: var(--small);
    font-weight: 400;
}

.container {
    width: 60%;
    margin: 0 auto;
    display: flex;
}

.major__title {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
}

/* ============================= MEDIA QUERIES ================================= */

@media (max-width: 1360px) {
    .container {
        width: 83%;
    }
}

@media (max-width: 1000px) {
    h1 {
        font-size: var(--large-mobile);
    }
    h2 {
        font-size: var(--big-mobile);
    }
    h3 {
        font-size: var(--medium-mobile);
    }
    h4 {
        font-size: var(--small-mobile);
    }
    .major__title {
        padding-top: 50px;
    }
}