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

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./assets/fonts/PlusJakartaSans-Bold.woff2") format("woff2"), url("./assets/fonts/PlusJakartaSans-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./assets/fonts/PlusJakartaSans-Medium.woff2") format("woff2"), url("./assets/fonts/PlusJakartaSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./assets/fonts/PlusJakartaSans-SemiBold.woff2") format("woff2"), url("./assets/fonts/PlusJakartaSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
body {
  font-family: "Plus Jakarta Sans";
  color: #fff;
  font-size: 16px;
}

.section {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background-image: url("./assets/img/7rooftop.webp");
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section:after {
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: linear-gradient(-180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
}
.section .logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.section .logo img {
  height: 150px;
  width: auto;
}
@media (max-width: 800px) {
  .section .logo img {
    height: 100px;
  }
}
.section .container {
  text-align: center;
  z-index: 5;
}
.section .container h1 {
  font-size: 28px;
}
@media (max-width: 800px) {
  .section .container h1 {
    font-size: 22px;
  }
}
.section .container .bouton {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 20px;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 30px;
}
@media (max-width: 800px) {
  .section .container .bouton {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.section .container .bouton:hover {
  color: #fff;
  background: #000;
}
.section .footer {
  position: absolute;
  bottom: 50px;
  left: 50%;
  text-align: center;
  line-height: 26px;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}
.section .footer a {
  color: #fff;
}
@media (max-width: 800px) {
  .section .footer {
    font-size: 12px;
  }
}
