* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.eventCard {
  opacity: 0;
  animation: cardShow 3s ease 0.3s forwards;
}

@keyframes cardShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.check404 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 280px);
}
.check404 h1 {
  font-size: 200px;
  color: #000000;
}
@media (max-width: 768px) {
  .check404 h1 {
    font-size: 150px;
  }
}/*# sourceMappingURL=style.css.map */