#map {position: absolute; top: 0; bottom: 0; left: 0; right: 0;}
.fountain-button {
    /* Add your button styles here */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
    background-color: #a7eae1;
    color: #000;
    border: none;
    border-radius: 4px;
}

.fountain-button:hover {
    background-color: #a7eaac;
}

.about-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: block;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer; /* Add this for better UX */
    transition: transform 0.2s ease; /* Add this for smooth animation */
}

.about-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-btn:hover {
    transform: scale(1.1);
}