@charset "utf-8";
/* CSS Document */

  body {
    color: rgb(82, 82, 82);
    text-align: center;
    box-sizing: border-box;
    background-repeat: no-repeat;
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s ease-out;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .video {
    display: flex;
    justify-content: center;
  }

  iframe {
    max-width: 100%;
  }
