body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Light blue background */
    color: #333; /* Dark text color */
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #ff6347; /* Tomato color for the header */
    margin-top: 20px;
}

.header {
    background-color: #fff; /* White background for header */
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav {
    text-align: center;
    margin: 20px 0;
}

.nav a {
    text-decoration: none;
    color: #ff6347; /* Tomato color for links */
    margin: 0 15px;
    font-weight: bold;
}

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

.section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff; /* White background for sections */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #ff6347; /* Tomato color for footer */
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}