/*==================== SCROLL UP ====================*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: hsla(0, 0%, 100%, 0.1);
    padding: 0.5rem;
    display: inline-flex;
    backdrop-filter: blur(12px);
    z-index: 10;
    transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
    transform: translateY(-0.25rem);
}

.scrollup-i {
    font-size: 1.25rem;
    color: #fff;
}

.show-scroll {
    bottom: 3rem;
}
