body {
  font-family: sans-serif;
  /* background-color: #676767; */
  color: #45dede;
}

.centered {
  text-align: center;
  perspective: 500px;
}

.hero {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 2em;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes float-from-bottom {
  from {
    opacity: 0;
    transform: translate3d(0px, 311px, 800px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float-from-left {
  from {
    opacity: 0;
    transform: translate3d(-920px, 0px, -800px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float-from-right {
  from {
    opacity: 0;
    transform: translate3d(1920px, 311px, -1200px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.box {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  border-radius: 8px;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

#img-from-bottom {
  animation-name: float-from-bottom;
  animation-delay: 0s;
  animation-duration: 1s;
}

#box1 {
  animation-name: float-from-left;
  animation-delay: 0.2s;
  animation-duration: 1.3s;
}

#box2 {
  animation-name: float-from-right;
  animation-delay: 0.3s;
  animation-duration: 1.5s;
}

/* 
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Optional: make it slide up a bit
  }
  100% {
    opacity: 1;
    transform: translateY(-2000px);
  }
}
.hero-animated {
  animation: fadeIn 1s ease-in-out;
}
*/
