
/* Style for the anchor button */
.button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 90px;  /* Distance from the right */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    background-color: orange;
    color: white;
    text-decoration: none; /* Remove the default underline from the anchor */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: none; /* Initially hidden */
}

/* Hover effect for the button */
.button:hover {
    background-color: orangered;
    transform: scale(1.1);
}

/* Active effect for the button when clicked */
.button:active {
    background-color: orange;
}
