@charset "UTF-8";
:root {
  --font-w-thin: 100;
  --font-w-light: 300;
  --font-w-regular: 400;
  --font-w-bold: 800;
  --fs-200: 0.5vh;
  --fs-300: 1vh;
  --fs-400: 1.5vh;
  --fs-500: 2vh;
  --fs-600: 3vh;
  --fs-700: 4vh;
  --fs-800: 5vh;
  --fs-900: 6.5vh;
  scroll-behavior: smooth;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Comic Sans MS";
  overflow: hidden;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

[hidden] {
  display: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100vw;
  display: block;
  image-rendering: pixelated;
  user-select: none;
  -webkit-user-drag: none;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

html,
body {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100vw;
  -webkit-font-smoothing: never;
  font-smooth: never;
  text-rendering: geometricPrecision;
  -webkit-print-color-adjust: exact;
}

html {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/background.jpg");
  background-size: 20%;
  image-rendering: pixelated;
}

body {
  width: 75vw;
  height: 100vh;
  max-width: 1500px;
  box-shadow: 0px 0px 12px #444;
  overflow-y: auto;
}

use {
  pointer-events: none;
}

ul {
  padding-inline-start: 0;
  margin-block-end: 0;
  margin-block-start: 0;
}

input[type=range] {
  appearance: slider-vertical;
  accent-color: #eee;
  padding: 0; /* nécessaire pour IE */
  outline: none;
  color: rgb(41, 41, 41); /* sert pour couleur de référence, via currentColor, pour le curseur */
  opacity: 0.8;
  box-sizing: border-box; /* même modèle de boîte pour tous */
  transition: opacity 0.2s;
  cursor: pointer;
}

body {
  background-color: var(--clr-miamo-primary);
}

@keyframes slide {
  0% {
    transform: translateY(-30vh);
  }
  100% {
    transform: translateY(120vh);
  }
}
.theme__miamo {
  --clr-name-miamo: ;
  --clr-miamo-white: #e4cceb;
  --clr-miamo-grey: #c8abd1;
  --clr-miamo-black: #1d171e;
}

.transition__open {
  opacity: 1;
  transform: rotateY(180deg);
}

.dumbell {
  position: absolute;
  z-index: 100;
  animation: slide 7s infinite;
}

.horizontal {
  position: fixed;
  inset: 0;
  margin: auto;
  background-image: url("../assets/paper.png");
  color: #070707;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
  text-align: center;
  padding: 1rem;
  display: none;
}
.horizontal img {
  width: 60%;
}

@media (orientation: portrait) {
  .horizontal {
    display: flex;
  }
}
.hide {
  opacity: 0;
  pointer-events: none;
}

.disabled {
  display: none !important;
}

#templates {
  display: none;
}

.canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  image-rendering: pixelated;
  z-index: 100000;
}

canvas {
  image-rendering: pixelated;
}

.lock {
  overflow: hidden !important;
}

.header {
  background-image: url("../assets/grey.png");
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header__welcome {
  width: 100%;
  color: #fff;
  height: 3rem;
  background-image: url("../assets/darkdrey.png");
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  font-size: 1.25vw;
}
.header__main {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  padding: 0 5%;
}
.header__logo {
  width: 10vh;
  transition: transform 1s;
}
.header__logo:hover {
  transform: rotate(360deg);
}
.header__li {
  width: 15%;
}
.header__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  background: linear-gradient(0deg, #3d671c 0%, #64d162 100%);
  color: #fff;
  text-decoration: none;
  font-size: 1vw;
  border: solid #559550 3px;
  border-radius: 1.5rem 1.5rem 0 0;
  border-bottom: none;
  padding: 0.5rem;
  gap: 5%;
  transform-origin: bottom;
  transition: transform 300ms;
}
.header__link:hover {
  transform: scaleY(0.7);
}
.header__icon {
  width: 25%;
  aspect-ratio: 1/1;
}
.header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  list-style: none;
  gap: 1rem;
  width: 95%;
}
.header__icon, .header__title {
  pointer-events: none;
}

.main {
  background-color: #fff;
  position: relative;
}
.main__transition {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer {
  background: linear-gradient(0deg, #0d0d0d 0%, #2d2d2d 100%);
  height: 6rem;
  position: relative;
  color: #fff;
  padding: 0 5%;
  font-size: 1.3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.footer__madame {
  position: absolute;
  top: calc(-7vw + 0.2rem);
  right: 0;
  height: 7vw;
}
.footer__version {
  font-size: 0.6vw;
}

.home {
  width: 100%;
  height: 100%;
}
.home__welcome {
  height: 70vh;
  background-image: url("../assets/home/background.png");
  position: relative;
  color: #fff;
}
.home__welcome-title {
  font-weight: 400;
  font-size: 4vw;
  position: absolute;
  left: 4%;
  top: 8%;
  opacity: 0.4;
  transform: rotate(-5deg);
}
.home__welcome-list {
  position: absolute;
  width: fit-content;
  left: 10%;
  list-style-type: square;
  font-size: 3vw;
  opacity: 0.7;
  top: 35%;
}
.home__welcome-people {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
}
.home__ad {
  color: #fff;
  padding: 1.5% 1rem;
  font-size: 2rem;
  text-align: center;
  background: linear-gradient(90deg, #193319 0%, #4b994b 100%);
}
.home__gallery {
  background-image: url("../assets/wall.png");
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.home__gallery-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 80%;
  gap: 1rem;
}
.home__gallery-img {
  width: 45%;
  box-shadow: 0 5px 15px #000;
}

.game {
  width: 100%;
  height: 100%;
}
.game__game {
  width: 100%;
  padding: 0.5rem;
  aspect-ratio: 16/9;
  position: relative;
  background-color: #bcbcbc;
}
.game__game-fullscreen {
  font-size: 0.5rem;
  position: absolute;
  bottom: 3%;
  right: 1.5%;
  opacity: 0.8;
  cursor: pointer;
}
.game__game-full {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.game__game iframe {
  width: 100%;
  height: 100%;
}
.game__about {
  height: fit-content;
  width: 100%;
  background-color: #9e9e9e;
  height: 40vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
.game__ad {
  background-color: #d9d9d9;
  width: 20%;
  height: 100%;
  text-align: center;
  line-height: 100%;
}
.game__desc {
  background-color: #fff;
  background-image: url("../assets/grey.png");
  height: 100%;
  width: 60%;
  overflow: auto;
  padding: 0.5rem;
}

.programs {
  min-height: 80vh;
  background-image: url("../assets/paper.png");
}
.programs__coach {
  width: 50%;
  position: absolute;
  bottom: 0;
  transform: scaleX(-1);
}
.programs__title {
  position: absolute;
  right: 2%;
  top: 15%;
  opacity: 0.47;
  text-align: right;
  font-size: 3vw;
  width: 60%;
  transform: rotate(15deg);
}

.trainer {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  background-image: url("../assets/checker.png");
  display: flex;
  background-size: 50vw 100vh;
  justify-content: center;
  align-items: center;
  animation: sky 50s linear infinite;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.trainer__logo {
  width: 45%;
  position: absolute;
  pointer-events: none;
  bottom: -30%;
  left: -3%;
}
.trainer__count {
  font-size: 4.5vw;
  color: #fff;
  text-shadow: 1px 1px 4px rgb(250, 134, 154);
}
.trainer__dumbell {
  width: 100%;
  margin-bottom: -15%;
  z-index: 10;
}
.trainer__character {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform-origin: bottom;
  transition: transform 300ms;
  cursor: pointer;
}
.trainer__character-stretch {
  transform: scaleY(0.6);
}

@keyframes sky {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}
.clothing__welcome {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}/*# sourceMappingURL=main.css.map */