/* Reset des marges et paddings par défaut */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}
.hero {
  height: 93vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero .content {
  width: 99%;
  height: 98%;
  background: url(../assets/image/background.jpg) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1%;
  text-align: center;
}
.hero h1 {
  font-size: 4rem;
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
  max-width: 700px;
}
.hero p {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}
.hero .cta-div {
  margin-top: 20px;
  background-color: white;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  padding: 10px 35px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  color: black;
  transition: background-color 0.3s ease;
}

.hero .cta-div:hover {
  background-color: #d3d3d3;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
