/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* REUSABLES */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

html {
    /* SETTINGS */
    --font-color: #555;

    --font-size: 20px;
    --font-size-1140: 18px;
    --font-size-780: 18px;
    --font-size-480: 18px;

    /* COLOR PRESET */
    --color-comp-green: #9FD044;
    --color-comp-blue: #088AB3;
    --color-comp-black: #12130F;
}

body {
    width: 100%;
    min-height: 100vh;
    font-size: var(--font-size);
    color: var(--font-color);
    font-family: 'Roboto', 'sans-serif';
    line-height: 145%;
    word-spacing: 0.1em;
    letter-spacing: 1px;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 50px 0;
    width: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

.site-header {
    width: 100%;
    margin: 30px 0;
    padding: 20px 0;
    text-align: center;
    font-size: 300%;
    font-weight: 300;
    line-height: 125%;
}

h1, h2 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}

h2 {
    font-size: 200%;
    letter-spacing: 0.01em;
}

.bold {
    font-size: inherit;
    font-weight: 700;
}

@media only screen and (max-width: 1140px) {
    body {
        font-size: var(--font-size-1140);
    }

    .row {
        max-width: 780px;
        padding: 0 10px;
    }

    section {
        padding: 25px 0;
    }

    .site-header {
        margin: 10px 0;
        padding: 10px 0;
    }
}

@media only screen and (max-width: 780px) {
    body {
        font-size: var(--font-size-780);
    }

    .row {
        max-width: 100%;
    }

    .site-header {
        font-size: 250%;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: var(--font-size-480);
    }

    .site-header {
        font-size: 200%;
    }
}