html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background: linear-gradient(to bottom, rgba(255, 204, 102, 0.2), rgba(30, 53, 94, 0.2));
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background: #ffcc66;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.menu-bar {
    display: flex;
	padding: 10px;
    align-items: center;
}

.menu-bar a {
    color: #1e355e; /* Cobalt Blue */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.1s ease-in-out;
    margin-right: 20px; /* Adjust the spacing between menu items */
}

.menu-bar a:hover {
    color: #ffffff; /* White */
}

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 150px; /* Adjust the size as needed */
}

.content-container {
    margin-top: 70px; /* Adjust the margin to leave space for the fixed header */
    width: 80%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 10%;
    z-index: 2;
}

section {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border: 1px solid #1e355e;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

footer {
    background-color: #1e355e; /* Cobalt Blue */
    color: #ffffff; /* White */
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
