#scrollButton {
    margin-top: 30px;
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#scrollButton:hover {
    background-color: rgba(0, 0, 0, 0.1);
}