.home-button {
    z-index: 1000;
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.home-button:hover {
    background-color: #f4f4f4;
}

.home-button img {
    width: 25px;
    height: 25px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(17%) saturate(11%) hue-rotate(23deg) brightness(96%) contrast(90%);
}