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

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url('./image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  gap: 30px;
}

.titre {
  font-size: 3em;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 0 20px;
  font-weight: bold;
}

.content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.texte-image {
  color: white;
  font-size: 1.2em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.mon-image {
  width: 200px;
  height: 200px;
  border: 3px solid white;
}

.bouton {
  padding: 12px 35px;
  font-size: 1.1em;
  color: white;
  background-color: #000000;
  border: 2px solid white;
  cursor: pointer;
}

.bouton:hover {
  background-color: #333333;
}
