@keyframes cursor-animation {
    0% {right: 300%; bottom: 500%;}
    50% {right: 70%; bottom: 470%;}
    100% {right: 60%; bottom: 35%;}
}

.cursor {
    position: absolute;
    z-index: 1000;
    width: 20px;
    padding: 0%;
    animation-name: cursor-animation;
    animation-duration: 4s;
    animation-fill-mode: forwards;
}

#menu-href::before {
    content: '☰' !important;
}

.hidden {
    display: none;
}

.center {
    position: relative;
    align-items: center;
}
