@font-face {
  font-family: "Chillax";
  src: url(fonts/Chillax-Variable.ttf) format("truetype");
}

@font-face {
  font-family: "Synonym";
  src: url(fonts/Synonym-Variable.ttf) format("truetype");
}

* {
  margin: 0;
  padding: 0;
  font-family: "Synonym";
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: black;
}

section {
  border-top: solid 1px black;
  scroll-margin-top: 92px; /* met ici la hauteur de ton header */
}

header {
  display: flex;
  justify-content: space-around;
  height: 50px;
  padding: 20px;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul {
  display: flex;
  list-style: none;
}

li {
  margin: 10px;
}

h1 {
  font-family: "Chillax";
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

#hero .container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#about .container {
  display: flex;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta {
  border-radius: 15px;
  background-color: black;
  color: white;
  width: fit-content;
  padding: 12px;
}

.cta:nth-child(2n) {
  border: black solid 1px;
  background-color: white;
  color: black;
}
