body {
	font-family: Arial, sans-serif;
	background: linear-gradient(to right, #1e3c72, #2a5298);
	color: #FFF;
	text-align: center;
	margin: 10;
	padding: 4;
	font-size: 36px;
}

header, footer {
    background: linear-gradient(to right, #003366, #00509e);
    padding: 15px;
    color: white;
}

main {
    padding: 20px;
}

.section-link {
    text-decoration: none;
    display: block;
    margin: 10px auto;
    max-width: 600px;
}

section {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Highlighted sections in light blue */
.highlighted {
    background: rgba(173, 216, 230, 0.5); /* Light blue background */
    color: white;
}

/* Hover and touch effects */
.section-link:hover section, .section-link:focus section {
    background: rgba(173, 216, 230, 0.8); /* Darker blue on hover */
    transform: scale(1.05);
}
/* Apply styles for the mobile-native upper side menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #003366, #00509e);
    display: flex;
    justify-content: space-between;
    padding: 15px;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.navbar a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Fixed bottom navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #003366, #00509e);
    display: flex;
    justify-content: center;
    padding: 10px;
    z-index: 1000;
}

.bottom-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
}

.bottom-nav a:hover {
    opacity: 0.8;
}

.date-container {
    text-align: right;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.footer-image {
    text-align: center;
    padding: 10px;
}

.footer-image img {
    max-width: 100%;
    height: auto;
}
