.home-button {
    position: fixed;
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border: 2px solid #f9ceff;
    background-color: #ff98d4;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
    z-index: 1000;
}

.home-button:hover {
    background: #ffd7f3;
    transform: scale(1.1);
}