

 <style>
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      font-family: 'ZCOOL XiaoWei', serif;
      color: #444;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .page {
      width: 90%;
      max-width: 800px;
      background-color: #fff;
      box-shadow: 0 0 8px rgba(63, 63, 63, 0.5);
      margin: 2rem auto;
      border-radius: 8px;
      overflow: hidden;
    }

    .container {
      padding: 1.5rem;
    }

    hgroup {
      text-align: center;
      margin-bottom: 1rem;
    }

    h1 {
      font-size: 2.5rem;
      margin: 0;
      font-family: 'ZCOOL XiaoWei', serif;
    }

    h1 span {
      color: red;
    }

    h3 {
      font-size: 1.2rem;
      color: #666;
      margin: 0.5rem 0 1rem 0;
      font-family: 'Cinzel', serif;
    }

    p, i, a {
      font-size: 1rem;
      line-height: 1.6;
      font-family: 'Big Shoulders Text', cursive;
      color: #666;
    }

    a {
      color: #d77371;
      text-decoration: none;
    }

    a:hover {
      color: red;
    }

    img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }

    iframe {
      width: 100%;
      height: 215px;
      border: none;
      margin-top: 1rem;
    }

    .contact {
      text-align: center;
      margin-top: 1.5rem;
    }

    @media (max-width: 800px) {
      h1 {
        font-size: 2rem;
      }

      h3 {
        font-size: 1rem;
      }

      .container {
        padding: 1rem;
      }
	  
	  .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
	  
    }
  </style>