* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

nav {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items:center;
    width: auto;
    height: 75px;
    border-radius: 5px;
    margin: 0 auto;
    background-image: url(/wallpaperflare.com_wallpaper.jpg);
}

h1 {
    transition: all 1s ease-in-out;
    filter: drop-shadow(3px 3px 3px gray);
}

h1:hover {
    font-size: 40px;
    filter: drop-shadow(3px 3px 3px rgb(255, 123, 0));
}

a  {
    border: 2px solid whitesmoke;
    box-shadow: 2px 2px black;
    border-radius: 5px;
    transition: background-color 1s;
    background-color: aqua;
    text-decoration: none;
}

a:active {
    font-size: 17px;
    border: none;
    box-shadow: none;
}

li {
    margin: auto;
    filter: drop-shadow(1px 1px 1px gray);
    padding: 15px;
    display: inline;
}

h3 {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease-in-out;
}


footer {
    width: auto;
    height: 85px;
    margin-top: 10px auto;
    transition-property: all;
    transition-duration: 2s;
    transition-timing-function: ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(4, 161, 161, 0.527);
    text-align: center;
}

footer h3 {
    
    margin: auto;
}

h6 {
    margin: auto;
}

footer:hover {
    background-color: rgba(252, 0, 168, 0.527);
}