.bottom-icons {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    z-index: 1;
    visibility: hidden;
    transition: 0.4s;
}

.bottom-icons a {
    text-decoration: none;
}

.bottom-icons svg {
    text-decoration: none;
    background: #8b5e73d5;
    border-radius: 20px;
    fill: #e3e8edb7;
    width: 2rem;
    height: auto;
    transition: 0.4s;
}
.bottom-icons svg:hover {
    transform: translateY(-5px);
}

.bottom-icons a.scrolltop {
    margin-left: 10px;
}

.show-icons {
    visibility: visible;
    bottom: 1.5rem;
}

@media (max-width: 550px) {
    .bottom-icons svg {
        width: 24px;
        height: 24px;
    }
}