body {
    margin: auto;
}
header h1{
    font-size: 40px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: black;
    padding: 75px;
    margin: 0 auto;
    background-color: rgb(173, 216, 230);
    background-size: cover;
    text-align: center;
}

nav {
    padding: 20px;
    margin: auto;
    background-color: rgb(119, 2, 119);
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
}

nav a {
    display: inline-block;
    margin: 15px 0 15px 0;
    border: none;
    text-align: center;
    padding: 10px;
    margin: 0 15px 0 15px;
    cursor: pointer;
} 

nav a:hover {
    background-color: blanchedalmond;
    border-radius: 10px;
}

.navbutton {
    color: goldenrod;
    font-size: 18px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#construction {
    max-width: 1300px;
    margin: 0 auto;
}

body h2 {
    font-size: 35px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

footer {
    margin: 0 auto;
    padding: 30px;
    border: solid 3px rgb(255, 212, 23);
    max-width: 500px;
    background-color: rgb(119, 2, 119);
}

address {
    color: goldenrod;
    text-align: center;
    font-size: 18px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@media screen and (max-width: 1000px) {
    nav {
        display: grid;
    }
}