:root {
    --logo_size: 200px;
    --nav_left_position: 150px;
    --nav_top_position: 100px;
    --nav_header_top_position: 0px;
    --nav_header_left_position: 150px;
}

body {
    background-color: bisque;
    height: 2000px;
}

header {
    position: fixed;
    top: 0px;
    height: 200px;
    width: 100%;
    z-index: 2;
}

#logo {
    width: var(--logo_size);
    left: 30px;
    top: 20px;
    border: 1px solid;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 3px;
    z-index: 1;
    position: absolute;
}

#banner {
    position: absolute;
    top: 30px;
    height: 150px;
    background-color: brown;
    border: 2px solid coral;
    width: 100%;
    box-shadow: 0px 0px 10px 3px;
}

#banner h1 {
    position: relative;
    color: white;
    text-shadow: 0px 0px 7px black;
    left: var(--nav_header_left_position);
    top: var(--nav_header_top_position);
}

nav {
    position: absolute;
    left: var(--nav_left_position);
    top: var(--nav_top_position)
}

nav a {
    text-decoration: none;
    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;
}

#blurb {
    font-size: x-large;
    margin-top: 250px;
}

main {
    display: flex;
    flex-direction: row;
    gap:10px;
    flex-wrap: wrap;
    justify-content: center;
}

.category h1 {
    color: white;
    text-shadow: 0px 0px 10px black;
    position: absolute;
}

footer {
    height: 50px;
    background-color: brown;
    border: 2px solid coral;
    width: 100%;
    box-shadow: 0px 0px 10px 3px;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0px;
}

@media (max-width: 499px) {
    #logo {
        border-radius: 50%;
    }
    :root {
        --logo_size: 100px;
    }
}

@media (min-width: 500px) {
    #blurb {
        font-size: large;
    }
    footer {
        height: 40px;
    }
    nav {
        left: 260px;
    }
    #banner h1 {
        left: 260px;
    }
}

@media (min-width: 1000px) {
    #blurb {
        font-size: medium;
    }
    footer {
        height: 30px;
    }
}