@font-face {
                font-family: Archistico;
                src: url(../fonts/Archistico_Simple.ttf);
}

@font-face {
    font-family: Eras;
    src: url(../fonts/Eras_Light_ITC.ttf);
}

body {
    font-family: 'Eras', sans-serif;
    font-size: 20px;
    margin: 0;
    background-color: #f0f0f0;
    color: #000000;
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 900px;
    margin: 0 auto;
}
#container a {
    color: #0e50b9;
}

#header {
    width: 100%;
    height: 100px;
}

#headerArea {
    width: 100%;
}

#navbar {
    height: 40px;
    width: 100%;
    margin: 10px;
}

#navbar ul {
    display: flex;
    list-style-type: none;
    justify-content: space-evenly;
    padding-top: 10px;
}

#navbar li a {
    color: #000000;
    text-decoration: none;
}

#navbar li a:hover {
    color: #0e50b9;
    text-decoration: none;
}

#flex {
    display: flex;
    padding-top: 20px;
}

main {
    flex: 1;
    padding-top: 20px;
    order: 2;
}

footer {
    background-color: #0d3d88;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    color: aliceblue;
    font-size: 17px;
}

h1,h2,h3 {
    
    font-weight: 500;
}

h1 {
    font-family: 'Archistico';
    font-size: 72px;
    color: #0e50b9;
}

h2 {
    font-size: 30px;
    color: #000000;
}

h3 {
    color: #0e50b9;
}

#homeimg {
    max-width: 900px;
}

table {
    width: 100%;
    
}

th {
    text-align: left;
}

.experience tr:nth-child(even) {
    background-color: lightgrey;
}


            /* BELOW THIS POINT IS MEDIA QUERY */

@media only screen and (max-width: 600px) {
    body {
        font-family: 'Eras', sans-serif;
        font-size: 20px;
        background-color: #f0f0f0;
        color: #000000;
    }
    
    * {
        box-sizing: border-box;
    }
    #container {
        max-width: 100vw;
        margin: 0 auto;
    }
    #header {
        width: 100%;
        height: 100px;
    }
    #navbar ul {
        display: flex;
        list-style-type: none;
        justify-content: space-evenly;
    }
    #flex {
        display: flex;
        flex-wrap: wrap;
    }
    footer {
        height: 20px;
        font-size: 10px;
    }
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 25px;
    }
}