body {
    height: 100vh;
    padding: 0px;
    margin: 0px;
    background-color: grey;
    color: blue;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../images/background.jpg"), linear-gradient(to right, rgb(21, 88, 83) 30%, rgba(255, 255, 255, 0.1) 70%);
    background-size: cover;
    /* background-position: top; */
    background-color: rgba(255, 255, 255, 0.1);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-origin: border-box;
}


a {
    text-decoration: inherit;
    color: inherit;
}

/* NAVIGATION BAR */

#nav-container {
    background-color: black;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 70px;

    margin: 0px;
}

/* Sizing Main Header Containers */
#nav-header {
    width: 20%;
    
    display: flex;
    justify-content: left;
    align-items: center;
}

#nav-nav {
    width: 50%;
}

#nav-search {
    width: 30%;

    display: flex;
    justify-content: space-around;
    align-items: center;

    border-radius: 20px;
    padding: 0px 0px;
    background-color: white;
    color: black;

    margin: 5px 10px;
    padding: 5px 5px;
}

/* Staying Logo and Name */
#header-logo, #header-name {
    /* display: block; */
    padding: 0px 5px;
    font-size: x-large;
    font-style: italic;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

/* Styling Navigation */
#nav-anchors {
    display: flex;
    justify-content: center;
}

.nav-a{
    padding: 5px 40px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-a a{
    font-size: larger;
}

/* Search Span */

#search-space {
    width: 70%;
    text-align: left;
    padding: auto 5px;
    margin: auto 5px;
    border: none;
}

.search-button-span {
    width: 12.5%;
    border: solid;
    border-color: darkgreen;
    border-radius: 5px;
    padding: 0px;
    margin: 0px;
    text-align: center;
    background-color: darkgreen;
    color: white;
}

.search-button-span:active {
    background-color: white;
    color: darkgreen;
}

/* Search Contents */
.search-button {
    padding: 5px 5px ;
    margin: 0px;
    color: inherit;
    background-color: inherit;
    border: none;
}

#searchbarInput, #searchbarInput:active{
    width: 95%;
    border: none;
    outline: none;
    margin: 5px;
    padding: 5px;
    font-size: small;
    color: darkgreen;
}
