/* Global styles */
body {
    font-family: Verdana, sans-serif;
    background-color: white;
    margin: 20px;
}

h1 {
    color: white;
}

h2 {
    color: black;
}

p {
    color: black;
}

/* Header and footer styling */
.header-footer {
    background-color: #3f1e1e;
    color: white;
    padding: 10px;
    text-align: center;
}

.header-footer p {
    color: white; /* Ensures footer text is white */
}

/* Main content styling */
.main-content {
    text-align: center;
    margin-top: 30px;
}

.intro {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #0b71cb;
    padding: 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

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

/* Highlight active link */
.navbar a.active {
    font-weight: bold;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navbar a {
        margin: 10px 0;
    }

    .slideshow {
        width: 100%;
    }
}