body {
    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    height: 100vh; /* Set body height to 100% of viewport height */
    width: 100vw; /* Set body width to 100% of viewport width */
    overflow: hidden; /* Hide scrollbars if content overflows */
    background-image: url('Sunrise_at_Eudunda.jpg'); /* Replace with your image path */
    background-size: cover; /* Scale the background image to cover the entire container */
    background-position: center center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-attachment: fixed; /* Fix the background image so it doesn't scroll */
    display: flex; /* Use flexbox for centering content */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    color: white; /* Example text color for readability */
    text-align: center; /* Center text within the content div */
    font-family: Arial, sans-serif; /* Example font */
}

.content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.25); /* Semi-transparent background for content */
    border-radius: 10px;
}
ul {
	list-style-type: none; 
}