    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: "Poppins", sans-serif;
      color: #fff;
      width: 100%;
    }

    body,
    .background {
      min-height: 100vh;
      min-width: 100vw;
    }

    .background {
      background: url("images/sunterra-web.jpg") no-repeat center center;
      background-size: cover;
      width: 100vw;
      height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .center-block {
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      gap: 28px;
    }

    .logo-container img {
      width: 440px;
      max-width: 90vw;
      height: auto;
      filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.4));
      margin-bottom: 0;
      display: block;
    }

    .logo-desc {
      font-size: 2vw;
      font-weight: 400;
      letter-spacing: 0.5px;

      margin: 0;
      text-align: center;
    }

    .center-middle-banner {
      background: rgba(22, 22, 22, 0.56);
      padding: 20px 40px;
      border-radius: 8px;
      font-size: 1.7vw;
      font-weight: 500;
      text-align: center;
      box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
      width: 70vw;
      max-width: 1100px;
    }

    .center-middle {
      padding: 20px 40px;
      border-radius: 8px;
      font-size: 1.4vw;
      font-weight: 500;
      text-align: center;
      box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
      width: 70vw;
      max-width: 1100px;
      background-color: #00000087;
    }

    .center-middle a {
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    margin-top: 24px;
}

    .footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100vw;
      display: flex;
      justify-content: space-between;
      font-size: 1.1vw;
      padding: 5px 34px;
      color: #000000;
      z-index: 2;
      font-weight: 400;
      letter-spacing: 0.04em;
      background-color: #ccc;
    }

    .footer span {
      margin: 2px 10px;
    }

    @media (max-width: 900px) {
      .logo-container img {
        width: 75vw;
      }

      .logo-desc {
        font-size: 4vw;
      }

      .center-middle-banner {
        font-size: 3.6vw;
        padding: 14px 6vw;
        width: 92vw;
      }

      .center-middle {
        font-size: 2.6vw;
        padding: 14px 6vw;
        width: 92vw;
      }

      .footer {
        font-size: 3vw;
      }
    }

    @media (max-width: 600px) {
      .logo-container img {
        width: 90vw;
      }

      .logo-desc {
        font-size: 5vw;
      }

      .center-middle-banner {
        font-size: 4vw;
        padding: 10px 2vw;
      }

      .footer {
        flex-direction: column;
        align-items: center;
        font-size: 3.4vw;
        text-align: center;
        padding: 0 10px;
        background-color: #ccc;
      }

      .footer span {
        display: block;
        width: 100%;
      }
    }
