* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position: center 10vh;
  background-size: contain;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  padding: 10vh 5vw;
}

.header h3 {
  text-align: center;
  color: #ff9e40;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  animation: fadeIn 2s ease-in-out;
}

.header h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  animation: fadeIn 2s ease-in-out 0.5s;
}

.header p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin: 1rem 0;
  animation: fadeIn 2s ease-in-out 1s;
}

.learn-more a button {
  background: #f6821f;
  border-radius: 0.25rem;
  border: none;
  padding: 1rem 2rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: fadeIn 2s ease-in-out 1.5s;
}

.learn-more a button:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 600px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p,
  .header h3 {
    font-size: 1.2rem;
  }

  .learn-more a button {
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
  }
}
