/* Set a background color for the entire page */
body {
    background-color: #ffffff; /* Light gray background */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Optional: Set a default font */
}


/* Center the logo and button, and ensure the button is below the image */
.logo-container {
    text-align: center;
    margin-top: 20px;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 20%; /* Adjust image scaling if needed */
}

.map-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #3d3d3d;
}
