body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
}

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

/* Fix for iOS viewport height issue */
html, body {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

@supports (-webkit-touch-callout: none) {
  /* iOS only */
  body {
    min-height: -webkit-fill-available;
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInUp-delay-1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.animate-fadeInUp-delay-2 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.nav-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-link:hover .nav-icon {
  opacity: 1;
}

.logo-container {
  width: 100px;
  height: 100px;
}

@media (max-width: 640px) {
  .logo-container {
      width: 80px;
      height: 80px;
  }
}

.quote {
  user-select: none;
  -webkit-user-select: none;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}