hr {
  color: #b4aca1;
  background-color: #b4aca1;
  border-bottom: 1px solid #f6f4eb;
  clear: both;
}
.blue {
  background-color: #8FA0AE;
  border: 1px solid #000000;
  border-radius: 6px;
}
#topmenu {
    clear: both;
}
table {
  background-color: lightblue;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    cursor: pointer;
}

.arrow span {
    display: block;
    width: 2.5vw;
    height: 2.5vw;
    border-bottom: 10px solid yellow;
    border-right: 10px solid yellow;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}