/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #ffffff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* Container */
.intro-container {
  text-align: center;
  padding: 20px;
}

/* Title */
h1 {
  font-size: 4rem;
  color: #083d77;
  margin-bottom: 40px;
  letter-spacing: 2px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

/* Slogan wrapper (just the text now) */
.slogan-wrapper {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* Just the text */
.slogan-wrapper p {
  font-size: 1.5rem;
  color: #b5b5b5; /* dark silver */
  white-space: nowrap;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .slogan-wrapper p {
    font-size: 1.2rem;
  }
}
