/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(to bottom, #cfe7ff, #f9fbff);
}

/* Container */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #0056b3;
}

nav {
    margin: 10px 0;
}

nav a {
    text-decoration: none;
    color: #0073e6;
    font-size: 1.2em;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Main */
main p {
    text-align: justify;
    font-size: 1.1em;
    padding: 10px 0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    color: #555;
}