/* Reset très léger */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #000000;
}

/* léger assombrissement du background */


.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 0 16px;
    text-align: center;
}


.logo {
  width: 300px;
  height: auto;
  margin-bottom: 24px;
}

/* le texte "currently building" */
.title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

}

/* Responsive mobile */
@media (max-width: 480px) {
  .card {
    padding: 28px 20px;
  }
  .logo {
    width: 90px;
    margin-bottom: 18px;
  }
  .title {
    font-size: 1.4rem;
  }
}