/* site.css */

:root {
    --black: rgba(0, 0, 0, 1.0);      /*  */
    --darkMoss: rgba(52, 61, 54, 1.0);   /*  */
    --deepGray: rgba(36, 43, 36, 1.0);   /*  */
    --accentColor: rgba(61, 136, 84, 1.0); /*  */
    --teal: rgba(40, 69, 71, 1.0); /*  */
    --scream: rgba(61, 136, 84, 1.0); /*  */
    --standy: rgba(213, 97, 53, 1.0);  /*  */
    --tubelight: rgba(243, 174, 61, 1.0);      /* */
    --sky: rgba(86, 189, 217, 1.0);  /* */
    --white: rgba(243, 245, 240, 1.0);  /* */
    --pale: rgba(201, 201, 192, 1.0);  /* */
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Lato-Light';
    src: url('../fonts/Lato-Light.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/Lato-Bold.ttf') format('truetype');
    font-display: swap;
}

html, body, .outer, .inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-display: swap;
    font-size: 1.0rem;
    font-weight: 400;
    color: var(--primary);
}

html {
    scroll-behavior: smooth;
    background-color: black;
}

body {
    max-width: 1800px;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-family: 'Lato-Bold', sans-serif;
    font-display: swap;
    font-weight: 700;
}

h5 {
    margin: 0;
    padding: 0;
    font-family: 'Lato-Light', sans-serif;
    font-display: swap;
    font-weight: 100;
}

p {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* main */
#main-outer {
    height: inherit;
    overflow: hidden;
}

.background {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: -1;
}

.backgroud-gradient {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 0;
}

main, section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    z-index: 1;
}

main {
    margin-bottom: 50px;
}

article {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 20px;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

/* Footer */
footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: var(--white);
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media
only screen and (min-width: 300px) and (max-width: 575px){

}

@media
only screen and (min-width: 576px) and (max-width: 935px){
    
}
