/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

/* Wrapper for background and centering */
.background-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../IMAGES/IMAGE_DE_FOND.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Frame for ultra-wide screens */
@media (min-width: 2000px) {
  .background-wrapper {
    background-color: black;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/* Content block */
.content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
  width: 600px;
}

/* Logo */
.logo {
  max-width: 300px;
  width: 100%;
  margin-bottom: 1rem;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact {
  font-size: 1rem;
}