body {
    background-color: #f0f4f8;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

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

p {
    color: #4a5568;
    font-size: 1.2rem;
}
/* Navigation Bar Styling */
.navbar {
    width: 100%;
    background-color: #2b6cb0;
    padding: 15px 0;
    position: fixed;
    top: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}
/* Adjusting the content so it doesn't hide behind the navbar */
.content {
    margin-top: 80px;
    text-align: center;
}
.main-image {
    max-width: 100%;    /* Ensures the image isn't wider than the screen */
    height: auto;       /* Keeps the image proportions correct */
    border-radius: 15px; /* Rounds the corners */
    border: 5px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Adds a subtle shadow */
    margin: 20px 0;
}
/* This code only runs on screens smaller than 600px (phones) */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem; /* Shrink the title for small screens */
    }

    .nav-links {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
