:root {
  font-family: "Amatic SC", cursive;
  background-color: black;
  color: white;
  line-height: 1.6;
  scroll-behavior: smooth;
  --primary-color: hsl(195, 69%, 54%);
  --darken-primary: hsl(195, 69%, 24%);
}

.primary {
  color: var(--primary-color);
  font-weight: 900;
}

.hidden {
  display: none;
}

.big {
  font-size: 4rem;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3rem;
  font-family: "Amatic SC", cursive;
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem !important;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

h3 {
  background-color: hsl(195, 69%, 10%);
  font-size: 2rem;
  font-family: "Amatic SC", cursive;
  padding: 2rem;
}

main {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  width: 100%;
  overflow: hidden;
  background-color: #121212;
}

img.content {
  display: block;
}

.content {
  max-width: 70ch;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  background-color: #222;
  border-radius: 8px;
  scroll-margin-top: 2rem;
}

.content a {
  color: rgb(161, 161, 255);
  font-size: 1.1rem;
}

.content li {
  list-style: none;
  padding: 0.5rem;
}

img.content {
  margin: 0 auto;
}

section {
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.banner {
  position: relative;
}

.banner img {
  height: 175px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner h2 {
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6666666667);
  position: absolute;
  inset: 3rem;
  display: flex;
  align-items: center;
  padding: 3rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.banner a {
  align-self: end;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.btn_ps {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn_ps>img {
  width: 30%;
}

#general .banner p {
  margin: 3rem 0;
  padding: 0;
  text-indent: 0;
  font-size: 1.5rem;
}

#general .banner img {
  min-height: 60vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* ou contain selon le besoin */
  -o-object-position: top;
  object-position: top;
}

#general .banner .inset {
  background-color: rgba(0, 0, 0, 0.5333333333);
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 3rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#general .content {
  padding: 5rem 2rem;
}

.center {
  display: inline-block;
  margin: 1rem;
  align-self: center;
}

a.button {
  background-color: var(--primary-color);
  color: black;
  padding: 0.5rem 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1.2rem;
  box-shadow: 0.1rem 0.1rem 0.5rem var(--darken-primary);
}

a.button:hover {
  background-color: var(--darken-primary);
  color: white;
}

/* Temporary for comming soon page */
.glitch-text {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  color: #777777;
  animation: glitch-zoom 5s infinite;
}

@keyframes glitch-zoom {

  0%,
  90% {
    transform: scale(1);
    text-shadow: none;
  }

  92% {
    transform: scale(1.05);
    text-shadow: 2px 0 #fff, -2px 0 #888;
  }

  94% {
    transform: scale(0.98);
    text-shadow: -2px 0 #fff, 2px 0 #888;
  }

  96% {
    transform: scale(1.03);
    text-shadow: 2px 0 #888, -2px 0 #fff;
  }

  98% {
    transform: scale(1);
    text-shadow: none;
  }

  100% {
    transform: scale(1);
    text-shadow: none;
  }
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: black;
  margin-top: -1rem;
  box-shadow: 0 0 0.5rem #777777;
  min-height: 300px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

footer div {
  display: flex;
  justify-content: center;
  align-items: center;
}

a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.content a:hover,
.content a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem !important;
  }
  .content {
    margin: 1rem;
    padding: 1.5rem 1.25rem;
    font-size: 1.1rem;
  }
  p {
    font-size: 1.1rem;
  }
  .content a {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */