      body {
        background: none;
        background-color: #111;
      }
      h1 {
        margin-top: 50px;
        margin-bottom: 50px !important;
      }
      .myWrapper-into {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        h2 {
          margin: 0;
          margin-bottom: 15px;
          text-align: left;
        }
        p {
          margin: 0;
        }
      }
      .container .myWrapper-into:last-child {
        margin-bottom: 50px;
      }

      .intoLinks {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
        span {
          width: 8px;
          height: 8px;
          background-color: #fff;
          border-radius: 50%;
        }
        a {
          transition: 0.3s all linear;
          transform-origin: left;
        }
        a:hover {
          text-decoration: underline;
        }
      }
      @media screen and (max-width: 750px) {
        .intoLinks {
          flex-direction: column;
          span {
            display: none;
          }
        }
      }