/* Mini */
@media screen and (max-width: 640px) {

    /*Navigation Bar*/

    #nav {
        display: flex;
        background-color: rgb(255, 185, 0);
        width: 100%;
        position: fixed;
        top: 0;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border: 3px solid black;
        border-radius: 10px;
    }

    #nav > .contain > a {
        display: flex;
        text-decoration: none;
        color:black;
        font-size: 16px;
        justify-content: center;
        text-align: center;
    }

    #nav > .contain > a > p {
        margin-top: 25%;
        height: 35px;
    }

    .contain {
        width: 75px;
        height: 60px;
        background-color: white;
        border-radius: 10px;
        border: 3px solid black;
    }

    #logo {
        width: 175px;
        height: 75px;
    }

    #nav > .contain > a > img {
        width: 165px;
        height: 65px;
        margin-top: 2.5%;
        border-radius: 10px;
    }

    /*Hover Nav */
    #nav > .contain:hover {
        background-color:rgb(255, 100, 0);
    }

    #logo.contain:hover {
        background-color:white;
    }

    /*selected nav*/
    #this {
        background-color:rgb(175, 125, 75);
    }

    /*Footer*/
    footer {
        display: flex;
        background-color: rgb(75, 75, 75);
        width: 100%;
        position: static;
        bottom: 0;
        color: white;
        justify-content: center;
        padding: 5px;
        border: 3px solid black;
        border-radius: 10px;
    }

}

/* Maxi */
@media screen and (min-width: 641px) {

    /*Navigation Bar*/

    #nav {
        display: flex;
        background-color: rgb(255, 185, 0);
        width: 100%;
        position: fixed;
        top: 0;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
        border: 3px solid black;
        border-radius: 10px;
    }

    #nav > .contain > a {
        display: flex;
        text-decoration: none;
        color:black;
        font-size: 20px;
        justify-content: center;
    }

    #nav > .contain > a > p {
        margin-top: 15%;
        height: 35px;
    }

    .contain {
        width: 125px;
        height: 60px;
        background-color: white;
        border-radius: 10px;
        border: 3px solid black;
        transition: background-color 0.25s ease-out;
    }

    #logo {
        width: 200px;
        height: 100px;
    }

    #nav > .contain > a > img {
        width: 190px;
        height: 85px;
        margin-top: 2.5%;
        border-radius: 10px;
    }

    /*Hover Nav */
    #nav > .contain:hover {
        background-color:rgb(255, 100, 0);
    }

    #logo.contain:hover {
        background-color:white;
    }

    /*selected nav*/
    #this {
        background-color:rgb(175, 125, 75);
    }

    /*Footer*/
    footer {
        display: flex;
        background-color: rgb(75, 75, 75);
        width: 100%;
        position: static;
        bottom: 0;
        color: white;
        justify-content: center;
        padding: 5px;
        border: 3px solid black;
        border-radius: 10px;
    }

    .space {
        height:10px;
        background-color: white;
    }

}