:root {
  --obsidian: #04150D;
  --abyss: #006664;
  --soil: #1A211B;
  --acid: #96FF9C;
  --crystal: #E5FFFD;
}

@font-face {
  font-family: "plexus";
  font-weight: 100;
  src: url("../assets/font/PlexusSans-Thin.otf") type("opentype");
}
@font-face {
  font-family: "plexus";
  font-weight: 200;
  src: url("../assets/font/PlexusSans-ExtraLight.otf") type("opentype");
}
@font-face {
  font-family: "plexus";
  font-weight: 300;
  src: url("../assets/font/PlexusSans-Light.otf") type("opentype");
}
@font-face {
  font-family: "plexus";
  font-weight: 400;
  src: url("../assets/font/PlexusSans-Regular.otf") type("opentype");
}
@font-face {
  font-family: "plexus";
  font-weight: 500;
  src: url("../assets/font/PlexusSans-Medium.otf") type("opentype");
}
@font-face {
  font-family: "plexus";
  font-weight: 700;
  src: url("../assets/font/PlexusSans-SemiBold.otf") type("opentype");
}
@font-face {
  font-family: "plexus";
  font-weight: 800;
  src: url("../assets/font/PlexusSans-Bold.otf") type("opentype");
}
body {
  margin: 0;
  background-color: var(--obsidian);
  color: var(--crystal);
  font-family: "Plexus", sans-serif;
  height: 100vh;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

.cta {
  display: flex;
  flex-direction: row;
  color: var(--obsidian);
  cursor: pointer;
  position: relative;
}
.cta p {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  text-align: center;
}
.cta svg {
  flex-shrink: 0;
  height: 100%;
}
.cta.primaire {
  filter: drop-shadow(0 0px 5px rgba(150, 255, 146, 0.2666666667));
}
.cta.primaire p {
  background: var(--acid);
}
.cta.secondaire {
  color: var(--acid);
}
.cta.secondaire p {
  position: relative;
}
.cta.secondaire p::before, .cta.secondaire p::after {
  content: "";
  position: absolute;
  background: var(--acid);
  width: 100%;
  height: 1px;
  display: block;
  left: 0;
}
.cta.secondaire p::before {
  top: 0px;
}
.cta.secondaire p::after {
  bottom: 0px;
}/*# sourceMappingURL=sheet.css.map */