
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      font-family: "Noto Sans", sans-serif;
      margin: 0;
      color: #9969FF;
      background: #0c0a14;
      font-size: 1rem;
    }

    .sr-only {
      position: absolute !important;
      height: 1px; width: 1px;
      overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
      white-space: nowrap;
    }

    .hero {
      height: 100%;
      display: block;
      align-items: center;
      padding: 30px 90px 30px 30px;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 1920px;
      background-color: #1c172e;
      position: relative;
    }

    
    .hero::after {
      content: "";
      position: absolute;
      background-image: url('/vector.svg');
      background-size: 221px;
      background-position: bottom right;
      background-repeat: no-repeat;
      z-index: 0;
      width: 221px;
      height: 100%;
      top: 0;
      right: -110px;
    }

    .container {

      width: 100%;
    }

    .logo {
      width: 363px;
      max-width: 90%;
      height: auto;
    }

    h1,h2 {
      font-family: "Playfair Display", serif;
      color: #9969FF;
      font-weight: 400;
      font-size: 1.5rem;
    }


    a {
      color: #9969FF;
    }

    @media (min-width: 800px) {
      
      body {
        font-size: 1.3rem;
      }
      h1,h2 {
        
      font-size: 3rem;
      }
      .hero {
        display: flex;
        padding: 60px 260px 60px 60px;
      }
      .hero::after  {
        right: 0;
      }
    }