body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    background: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
}

main {
    width: 80%;
    margin: 20px 0;
}

footer {
    width: 100%;
    background: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
    position: fixed;
    bottom: 0;
}

h1 {
    margin: 20px 0;
}

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

.leaflet-tile {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    will-change: transform, opacity; /* Hint the browser to optimize transitions */
}
#map {
    height: 600px;
}
#map-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000; /* Ensure it's above map controls */
    padding: 10px;
    border-radius: 5px;
    /* Remove background color and border */
    background-color: transparent;
    border: none;
}
#map-logo img {
    height: 50px; /* Adjust as needed */
}
#map-logo a {
    text-decoration: none; /* Remove underline from the link */
}
#images {
    text-align: center; /* Center align the images */
    margin-top: 20px; /* Add margin above the images */
}
.volcano-image {
    max-width: 300px; /* Set max width for images */
    margin: 10px; /* Add margin around images for spacing */
}
/* GitHub logo size */
#github-logo img {
    height: 20px; /* Adjust the size as needed */
    margin-top: 10px; /* Add some spacing above the GitHub logo */
}
