@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body {
  font-family: 'Share Tech Mono', monospace;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #e6f1ff;

  /* Centrage vertical et horizontal */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;

  padding: 2rem;
  text-align: center;
}

.container {
  max-width: 900px;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 20, 40, 0.7);
  padding: 2rem;
  border: 1px solid #0ff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.text-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.text-section .faded {
  opacity: 0.8;
}

.underline {
  border-bottom: 2px solid #0cf;
  display: inline-block;
  padding-bottom: 2px;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  margin: 2rem 0;
  color: #0cf;
  text-shadow: 2px 2px 0 #000;
}

.footer p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer .label {
  color: #0cf;
}

@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }

  .text-section p,
  .footer p {
    font-size: 0.9rem;
  }
}