/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
}
body{
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5ff;
    overflow-x: hidden;
}


/* Navigation */
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1em;
    background-color: #010A14;
}
.logo {
    display:flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 2em;
    letter-spacing: 2px;
    color: white;
    margin-right: 50px;
    margin-left: 50px;
}
.logo a {
    font-weight: bold;
    text-decoration: none;
    color:#f5f5f5ff;
}
.logo a:hover {
    text-decoration: none;
    color: #fab875ff;
}
.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.nav-list a {
    display: flex;
    text-decoration: none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    padding: 15px 20px;
    border-radius: 5px;
    transition: 0.3s;
    color:#f5f5f5ff;
}
.nav-list a:hover {
    color: #fab875ff;
}

/* Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}
h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: #021327;
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 800px;
}
h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #021327;
    font-size: 2rem;
    max-width: 800px;
}
.subtitle {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #021327;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
}
.essay {
    font-family: Cochin;
    font-size: 20px;
    line-height: 1.5;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 800px;
}
.references {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    line-height: 1.5;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -20px;
}

/* Footer */
.footer {
    position: relative;
    text-align: center;
    margin-top: auto;
    padding: 1em;
    width: 100%;
    color: #ffffff;
    background-color: #010A14;
}
.footer p {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1em;
    margin: 0;
}