body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #36377c;
}

header {
    background-color: #1c204a;
    padding: 1rem;
}

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

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #dcd7d3;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3498db;
}

section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.content {
    max-width: 800px;
}

h1 {
    color: #eaeae9;
    font-size: 3rem;
}

h2 {
    color: #eaeae9;
    font-size: 2rem;
}

p a {
    color: #eaeae9;
}

p, ul li {
    color: #eaeae9;
    font-size: 1.2rem;
}

a {
    color: #0D1321;
}

