
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .center-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      position: relative;
    }

    .animation-wrapper {
      position: relative;
      width: 100%;
    }

    .animation-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'EB Garamond', serif;
      color: #516477;
      font-size: 10vw;
      line-height: 1;
      pointer-events: none;
      white-space: nowrap;
    }

    .footer {
      font-family: 'Raleway', sans-serif;
      color: #516477;
      font-size: 12pt;
      margin-bottom: 20px;
      text-align: center;
    }
