@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
.header {
  background-color: #13314750;
  backdrop-filter: blur(4px);
}
.not-found1{
  height: 70vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found1 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
.not-found-h1 {
  animation: fadeOutUp 6s ;
  animation-delay: 6s;
  display: flex;
  gap: 0.5rem;
}
.animate {
  font-family: 'Press Start 2P';
  color: #fff;
  font-size: 80px;
  
}
.animate-1 {
  animation: zoomOutUp 5s ;
  animation-delay: 6s;
}
.animate-2 {
  animation: zoomOutUp 5s ;
  animation-delay: 6s;
}
.animate-3 {
  animation: zoomOutUp 5s ;
  animation-delay: 6s;
}
.not-found svg {
  animation: zoomInDown 6s ;
}

@keyframes zoomOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .1;
  }
}
