:root {
    --logo_size: 200px;
    --banner_height: 150px;
    --footer_height: 50px;
    /* Hmmm..might be cool to put some more variables here to keep things neat */
}

body {
    background-color: bisque;
    height: 2000px;
    overflow-x: hidden;
    margin: 0;
    padding-top: 5rem;
}



header {
    width: 100%;
    position: fixed;
    top: 1rem;
    left: 0;
    height: var(--banner_height);
    display: flex;
    align-items: center;
    background-color: bisque;
    z-index: 10;
}

#logo {
    width: var(--logo_size);
    border: 1px solid;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 3px;
    z-index: 20;
    margin-left: 20px;
    position: absolute;
    top: 1%;
    left: 1%;
}


#banner {
    background-color: brown;
    border: 2px solid coral;
    width: 100%;
    box-shadow: 0px 0px 10px 3px;
    flex: 1;
    padding-left: 17rem;
    display: flex;
    flex-direction: column;
    justify-content: right;
    height: var(--banner_height);
    position: relative;
    top: 10%;
    z-index: 5;
}

#banner h1 {
    right: 20px;
    color: white;
    text-shadow: 0px 0px 7px black;
    margin: 40px 20px 0 0;
}

nav {
    right: 20px;
    bottom: 50px;
    margin-right: 20px;
    padding-left: 100px;
}

nav a {
    text-decoration: none;
    margin-right: 5px;
    color: bisque;
    text-shadow: 0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px black,
        0 0 30px black,
        0 0 40px black;
}

nav a:hover {
    /* Making the menu items glow when hovering over them */
    text-decoration: none;
    color: bisque;
    text-shadow: 0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px bisque,
        0 0 30px bisque,
        0 0 40px bisque;
}

main img {
    width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid;
    box-shadow: 0px 0px 10px 1px;
    flex-shrink: 0;
}

#grid_container {
    margin-top: var(--banner_height);
    margin-bottom: var(--footer_height);
}

#blurb {
    font-size: 1.2rem;
    padding: 20px;
    margin: auto;
    max-width: 900px;

}

main {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.category {
    text-align: center;
    position: relative;
    display: inline-block;
}

.category h1 {
    color: rgb(255, 255, 255);
    text-shadow: 0px 0px 10px black;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 8px;
    text-shadow: 0 0 10px black;
    z-index: 5;
}

footer {

    height: 50px;
    background-color: brown;
    border: 2px solid coral;
    width: 100%;
    box-shadow: 0px 0px 10px 3px;
    color: white;
    text-align: center;
    bottom: 0;
    left: 0;
    height: var(--footer_height);
    line-height: var(--footer_height);
    z-index: 10;
    position: fixed;
}

@media (max-width: 700px) {

    #logo {
        width: 100px;
        margin: -2px 0;
    }

    #banner {
        width: 100%;
        padding: 10px 0px 0px 100px;
        text-align: center;
        height: var(--banner_height);
    }

    #banner h1 {
        margin-top: 1rem;
    }

    nav {
        display: inline-block;
        text-align: left;
        position: absolute;
        left: -5.5rem;
        bottom: 10px;
    }


}