body {
    font-family: 'Inria Sans', sans-serif;
    margin: 50px auto;
    max-width: 1200px;
    padding: 70px 20px 0;
    background-color: rgb(214, 214, 214);
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(214, 214, 214, 0.9);
    margin: 0;
    padding: 0 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul :first-child {
    margin-right: auto; 
}

li {
    font-size: larger;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px;
    font-weight: lighter;
}

li > a {
    color: black;
    text-decoration: none;
}

li > a:hover {
    color: rgba(238, 163, 2, 1);
    transition: 450ms ease;
}


/* Header */
header h1 {
    font-weight: lighter;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/*Main Content*/
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: 75px 0px 0px 0px;
}

#phone{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#phone:hover{
    text-decoration: underline;
}

#email-address{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#email-address:hover{
    text-decoration: underline;
}

hr{
    margin: 75px 0px 65px 0px;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-evenly;
    margin: 25px 0px 25px 0px;
}

footer div {
    font-size: large;
}

footer h3 {
    font-size: larger;
    text-decoration: underline;
}

.contact-link {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.contact-link:hover {
    text-decoration: underline;
}
