body {
    background-repeat: no-repeat;
}

footer {
    font-size: 1.1rem;
    font-family: "Verdana", Times, sans-serif;
}

.container {
    width: 100%;
    max-width: 1260px;
    min-width: 780px;
    background-color: #fff;
    margin: 0 auto;
}

.content {
    padding-top: 50px;
    width: 100%;
    float: left;
    background-color: #fff;
}

#active {
    background: black;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(51, 51, 51, 0.5);
    width: 100%;
    z-index: 1000;
    position: relative;
    top: -.45vh;
    transition: background-color .4s;
    display: flex;
    justify-content: center;

}

ul:hover {
    background-color: rgba(51, 51, 51, 0.9);
}

li {
    float: left;
}

li a,
.dropbtn {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover {
    transition-duration: .7s;
}

div.logo {
    /*make the logo center */
    text-align: center;
}

h1 {
    margin-top: 100px;
    float: right;
    padding-right: 200px;
}

ul.nav a,
ul.nav a:visited {
    /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block;
    /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    text-decoration: none;
    background-color: #8090AB;
    color: #000;
}

li a:hover:not(.active) {
    background-color: #111;
    color: #ff0000;
}

.active {
    background-color: red;
}

.dropdown:hover .dropbtn {
    background-color: #111;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    color: #ff0000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#banner img {
    height: 115%;
    position: relative;
    top: -5vh;
}

.form input {
    height: 3.3vh;
    width: 14vw;
    padding: 0 .2vw;
}

.form textarea {
    padding: .2vw;
    resize: none;
}
@media only screen and (max-width: 600px){
    h1{
        display: none;
    }
}
@media only screen and (max-width: 1024px){
    h1{
        display: none;
    }
}