.top-title, .top-links {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Ensures consistency */
    color: ffffff; /* Ensures text color is white */
}

.top-links {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    color: #ffffff;
    text-decoration: none;
    background-color: #1d242e;
}

.top-links a {
    color: white; /* Makes link text white */
    text-decoration: none; /* Removes underline from links */
}

.top-links a:hover {
    text-decoration: underline; /* Adds underline on hover for better UX */
}

.top-title {
    font-size: 32px; /* Makes the text larger */
    font-weight: bold; /* Makes the text bold */
    color: #ffffff; /* Sets the text color */
    text-align: center; /* Centers the text */
    margin-top: 20px; /* Adds space above the title */
    background-color: #1d242e;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%; /* Ensures the image is responsive and does not overflow its container */
    height: auto; /* Keeps the image aspect ratio */
    padding: 10px; /* Adds small white padding around the image */
    background-color: white; /* Sets the padding color to white */
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Modern sans-serif font */
    color: white; /* Text color */
    background-color: #1d242e; /* Dark grey background */
    margin: 0;
    padding: 20px;
}