body {
  height: 100vh;
  margin: 0;
}

.box {
  width: 400px;
  margin: 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}
.box > h1 {
  color: rgb(158, 35, 158);
}
.box > img {
  width: 600px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.box > div {
  padding: 0 15px;
}
.box h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.box h3 {
  font-size: 1.2rem;
}
.box p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.box-light {
  width: 100%;
  background-image: url("/images/lightBg.png");
  background-position: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}

.box-whiteBg {
  width: 100%;
  background-color: rgb(247, 246, 240);
  background-position: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}

.box2 {
  margin: 0;
  width: 100%;
  background-image: url("/images/darkBg.png");
  background-position: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}

.description-light {
  padding: 0 20px;
}
.description-light h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.description-light h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.description-light h3 {
  font-size: 1.2rem;
}
.description-light p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.description-light img {
  height: 30px;
}

.pages {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pages > img {
  width: 500px;
  height: auto;
  margin: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
}
.video-container .ratio {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.video-container iframe {
  border: none;
}

.btn {
  display: block;
  width: 80%;
  margin: 5px auto;
}

@media (max-width: 768px) {
  .box {
    width: 90%;
    margin: 50px auto;
    flex-direction: column;
    text-align: center;
  }
  .box > img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
  }
  .pages {
    text-align: center;
    width: 250px;
  }
  .pages > img {
    width: 100%;
    max-width: 350px;
  }
  .box-light {
    flex-direction: column;
    padding: 20px 10px;
  }
  .box-light .pages > img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
  }
  .box2 {
    flex-direction: column;
    padding: 20px 10px;
  }
  .video-container {
    max-width: 100%;
    margin: 10px;
  }
}
@media (max-width: 480px) {
  .box {
    margin: 30px auto;
  }
  .box > img {
    max-width: 200px;
  }
  .box-light,
  .box2 {
    padding: 15px 5px;
  }
  .description-light {
    padding: 0 15px;
  }
  .description-light h1,
  .description-light h2 {
    font-size: 1.5rem;
  }
  .description-light h2 {
    font-size: 1.4rem;
  }
  .description-light h3 {
    font-size: 1.1rem;
  }
  .description-light p {
    font-size: 0.9rem;
  }
  .pages > img {
    max-width: 280px;
  }
  .video-container {
    margin: 5px;
  }
}/*# sourceMappingURL=mdPage.css.map */