body {
    margin: 0;
    padding: 0;
    background-color: rgb(42, 42, 42);
    color: rgb(30, 30, 30);
}

.navigation {
    background-color: rgba(0, 139, 139, 0.518);
    height: 75px;
    border-width: 5px;
    border-color: rgba(0, 139, 139, 0.518);
    border-style: inset;
    font-size: 25px;
    font-weight: bold;
    color: rgb(30, 30, 30);
    margin-top: 15px;
    margin-left: 50px;
    margin-right: 20px;
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.552);
    border-radius: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav {
    float: right;
    margin: 0;
    padding-bottom: 3px;
}

li {
    display: inline;
    padding: 15px;
}

li a:hover{
    background-color: rgb(178, 178, 178);
    cursor: pointer;
    box-shadow: 3px 5px rgba(0, 0, 0, 0.552);
}

li a:active{
    background-color: rgb(76, 76, 76);
    box-shadow: 2px 3px rgba(0, 0, 0, 0.552);
}

nav a {
    background-color: gray;
    text-decoration: none;
    color: rgb(30, 30, 30);
    display: inline-block;
    margin-top: 12px;
    padding: 10px;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(30, 30, 30);
    border-style: solid;
}

@media screen and (max-width: 700px) {
nav {
    width: 100%;
    margin-top: -5px;
}

nav li {
    display: block;
    background-color: #e5e5e5;
    text-align: center;
}
}

* {
    font-family: Montserrat, sans-serif;
}

.footer {
    background-color: rgba(0, 139, 139, 0.518);
    border-style: inset;
    border-width: 5px;
    border-color: rgba(0, 139, 139, 0.518);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.552);
}
