/* @import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
.navigation {
  position: absolute;
  top: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  color: #d12323;
}
.navigation a {
  border: none;
  background: none;
  color: #d12323;
  font-family: "Righteous", cursive;
  font-size: 50px;
  margin-right: 50px;
  text-shadow: 2px 2px rgb(39, 6, 253);
  cursor: pointer;
  opacity: 0.3;
  transition: 0.3s ease-out;
}
.navigation a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.navigation a:last-child {
  margin-right: 0;
} */

