* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.scroll {
  overflow-x: hidden;
  height: 100vh;
  max-width: none;
  scroll-snap-type: y mandatory;
  background-color: #333;
}
.scroll .page {
  position: relative;
  scroll-snap-align: center;
  display: grid;
  place-content: center;
  height: 100vh;
  color: #000;
  overflow: hidden;
}
.scroll .page .text-container {
  z-index: 1;
  border: #000 2px solid;
  padding: 50px;
  border-radius: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}
.scroll .page .text-container p {
  text-align: center;
}
.scroll .page img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#retour {
  z-index: 9;
  position: fixed;
  background-color: #999;
  padding: 10px;
  color: #000;
}

.valentine {
  position: relative;
  background-image: url("../img/2023/1.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.valentine h1 {
  text-align: center;
  color: #fff;
}
.valentine .boutons {
  display: flex;
  justify-content: center;
}
.valentine .boutons button {
  cursor: pointer;
  width: 200px;
  height: 40px;
  border-radius: 10px;
  display: inline;
  transition: all 0.2s ease-in-out;
}
.valentine .boutons button#non {
  cursor: not-allowed;
}
.valentine #bg {
  display: none;
  position: fixed;
  z-index: 8;
  width: 100vw;
  height: 100vh;
  top: 0;
  background-color: transparent;
}
.valentine #captcha {
  display: none;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #fff;
}
.valentine #captcha.active {
  display: block;
}
.valentine #captcha.active + #bg {
  display: block;
}
.valentine #captcha header {
  background-color: rgb(0, 140, 255);
  margin: 7px;
  padding: 20px;
}
.valentine #captcha header p {
  font-size: 12px;
}
.valentine #captcha header h3 {
  font-size: 23px;
  font-weight: bold;
}
.valentine #captcha main ul {
  width: 293px;
  margin: 7px;
  display: block;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.valentine #captcha main ul li {
  position: relative;
  width: 97px;
  height: 97px;
  flex: none;
  display: block;
}
.valentine #captcha main ul li input {
  z-index: 10;
  position: absolute;
}
.valentine #captcha main ul li input:checked + label {
  transform: scale(0.8);
}
.valentine #captcha main ul li label {
  transform-origin: center;
  z-index: 9;
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px #999;
  color: #000;
  display: grid;
  place-content: center;
  background-size: cover;
  background-position: center;
}
.valentine #captcha footer {
  display: flex;
  justify-content: space-between;
  color: #000;
  border: solid #999 1px;
  padding: 0px 10px;
}
.valentine #captcha footer button {
  border: none;
  background-color: transparent;
  padding: 15px;
}
.valentine #captcha footer button:hover {
  color: rgb(0, 140, 255);
}
.valentine #captcha footer .left {
  display: flex;
  gap: 10px;
}

@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=2023.css.map */