.module-home {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}

.module-home-logo {
  width: min(40vw, 520px);
  max-width: 40%;
  max-height: 40vh;
  object-fit: contain;
}

.module-home-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
}

@media (max-width: 640px) {
  .module-home-logo {
    width: 70vw;
    max-width: 70%;
  }
}

