@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rhodium+Libre&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #CFD7C7;
}

h1 {
    display: flex;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 5;
    font-size: 300%;
    text-align: center;
    margin-top: 125px;
    margin-left: 20px;
    margin-right: 20px;
    color: black;
}

header {
    background-color: #0B2027;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 10px;
}

#NavHome {
    text-decoration: none;
    text-align: center;
    color: #d85600;
    font-family: "Rhodium Libre", serif;
    padding-left: 10px;
    padding-right: 10px;
}

#NavLinks {
    text-decoration: none;
    text-align: center;
    color: #F6F1D1;
    font-family: "Rhodium Libre", serif;
    padding-left: 10px;
    padding-right: 10px;
}

#NavLinks:hover {
    color: #00bb19;
}

#NavHome:hover {
    color: #00bb19;
}

/* Media Queries */

@media screen and (max-width: 550px) {

    nav {
        display: flex;
        flex-direction: column;
        justify-self: center;
        justify-content: space-around;
    }

    #NavHome {
        padding-bottom: 5px;
        border-bottom: solid 1px #247BA0;
        order: -1;
    }

    #NavLinks {
        padding-top: 5px;
        padding-bottom: 5px;
        border-top: solid 1px #247BA0;
        border-bottom: solid 1px #247BA0;
    }

    #NavLinks:last-child {
        border-bottom: 0;
        padding-bottom: 0;

    }
}