#scrollUpButton{
    align-items: center;
    aspect-ratio: 1 / 1;
    background-color: #cf5434;
    border: 1px solid #9f4028;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    bottom: 1rem;     /* Distance from the bottom edge */
    justify-content: center; /* Center the SVG horizontally */
    justify-self: center; /* Center the SVG horizontally */
    opacity: 0;
    position: fixed;
    right: 1rem;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: clamp(3.5rem, 3.5vw, 4rem);
    z-index: 9;
}
#scrollUpButton.show {
    opacity: 1;
    visibility: visible;
}