body {
    font-family: 'Inria Sans', sans-serif;
    margin: 50px 150px 0px 150px;
    background-color: rgb(214, 214, 214);
    padding-top: 70px;
}

/* 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: row;
    justify-content: space-between;
    margin: 70px 0px 70px 0px;
}

.content{
    width: 400px;
}

/* 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;
}
