.totop {
    position: fixed;
    right: 5vw;
    bottom: 5vw;
    background: var(--primary);
    padding: 20px 26px;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    border-radius: 6px;
    transition: .1s;
    z-index: 9999;
}

.totop:hover {
    cursor: pointer;
    background: var(--lightPrimary);
}
