/* Scroll Down Arrow */
.scroll-down-arrow {
  display: flex;
  margin: 2rem auto 0;
  position: relative;
  color: white;
  animation: bounce 2s infinite;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.scroll-down-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.scroll-down-arrow .material-icons {
  font-size: 36px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
