/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #055A9A;
    margin: 0;
    padding: 0;
    margin-bottom: -10px;
}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the image covers the entire screen without stretching */
    margin: 0;
    margin-bottom: -10px;
}

header {
    background-color: #04487b;
    padding: 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 2em;
}

p {
    font-size: 1.2em;
    margin: 5px 0;
}

/* Navbar styling */
.navbar {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between menu items */
}

.navbar li {
    display: inline;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    padding: 10px 15px;
    background-color: #033a62;
    border-radius: 5px;
    transition: 500ms;
}

.navbar a:hover {
    background-color: #0890F7;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
    /* Make navbar items smaller to fit */
    .navbar {
        gap: 10px; /* Reduce the space between the items */
    }

    .navbar a {
        font-size: 0.9em; /* Make the text smaller */
        padding: 8px 10px; /* Reduce padding to make the buttons smaller */
    }
}