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

body {
  scroll-behavior: smooth;
}

.container {
  overflow: auto;
  height: 100vh;
  width: 100vw;
  max-width: none;
  scroll-snap-type: y mandatory;
}
.container > .container2 {
  scroll-snap-align: center;
}

.container2 {
  display: flex;
  overflow: auto;
  height: 100vh;
  background-color: #333;
  scroll-snap-type: x mandatory;
}
.container2 > div {
  display: grid;
  place-content: center;
  text-align: center;
  scroll-snap-align: center;
  width: 100vw;
  height: 100vh;
  flex: none;
}
.container2 > div img, .container2 > div video {
  max-width: 100vw;
  max-height: 100vh;
}
.container2::-webkit-scrollbar {
  display: none;
}

a {
  z-index: 3;
  position: fixed;
  top: 20px;
  left: 20px;
  border: solid 1px #000;
  padding: 15px 20px;
  border-radius: 15px;
  display: grid;
  place-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6666666667);
  color: #000;
  text-decoration: none;
}

@media (max-width: 600px) {
  * {
    overflow: hidden;
  }
  body::after {
    z-index: 9999;
    filter: blur(0px);
    content: "passe sur pc c'est mieux";
    background-color: #000;
    color: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
  }
}/*# sourceMappingURL=mood.css.map */