.button-container {
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  .button-container {
    flex-direction: column;
  }
}

/*
                INDIVIDUAL BUTTONS
  */

.home-button-container {
  text-align: center;
  margin: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.3s 0.6s forwards ease-in;
}

.home-button-container h4 {
  color: var(--gray-900, #212121);
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.home-button-container p {
  color: var(--gray-700, #494949);
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.learn-button {
  color: var(--primary-color, #3f75ff);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  .home-button-container {
    margin: 40px 80px;
  }
}
.img-container {
  display: flex;
  align-items: center;
  max-width: 600px;
  height: 400px;
  margin: 0 auto;
}

img {
  margin: 0 auto;
  width: 100%;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
