* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

.sora-<uniquifier> {
         font-family: "Sora", sans-serif;
         font-optical-sizing: auto;
         font-weight: <weight>;
         font-style: normal;
       }


body {
  font-family: "Sora", sans-serif;
}


a {
  text-decoration: none;
}


body {
  background-color: #03022C ;
}

.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.logo svg{
width: 10%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px 24px;
  background-color: #E0B04D;
  width: fit-content;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: #03022C  ;
  font-size: 18px;
}

.button:hover {
  background-color: #a37312;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 30px 15vw;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

h1 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: white;
  margin-top: 80px;
}

p, h2 {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  line-height: 1.5;
}

h2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: white;
  line-height: 1.5;
}

strong{
  font-weight: 600;
}

.hero::before {
  content: "";
  position: absolute;
  top: 15;
  left: 0;
  width: 35%;
  height: 35%;
  background-image: url("./images/Dijon_connect__embleme_blanc_full.png");
  background-repeat: no-repeat;
  background-position: 35% 25%;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}

.cta{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1024px) {
  .hero {
  padding: 30px 50px;
}
  h1 {
  font-size: 30px;
}
p {
  font-size: 16px;
}
h2 {
    font-size: 18px;
  }
.button {
  font-size: 16px;
}
.logo svg{
width: 20%;
}
}

@media (max-width: 767px) {
  .hero {
    padding: 30px 20px;
  }
  h1 {
    font-size: 25px;
  }
.logo svg{
width: 30%;
}
.hero::before {
  width: 25%;
  height: 25%;
  margin-left: 20px;
}
}