
    body {
      margin: 0;
      font-family: 'TT Norms Pro', sans-serif;
      background-color: #17C8C3;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      padding: 0;
    }

    header {
      width: 100%;
      padding: 2rem 1rem;
      text-align: center;
    }

    .logo-text {
      font-size: 3rem;
      font-weight: bold;
      text-transform: lowercase;
    }


    .main {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      padding: 2rem;
      box-sizing: border-box;
    }

    .content {
        padding-top: 90px;
        padding-left: 300px;
    }

    .highlight {
      color: #ff0055;
      font-weight: bold;
      font-family: 'TT Norms Pro', Arial, Helvetica, sans-serif;
    }

    .img-left {
      position: absolute;
      width: 900px;
      bottom: 0;
      z-index: 0;
      left: 0;
    }

    .img-right {
      position: absolute;
      width: 400px;
      bottom: 0;
      z-index: 0;
      right: -3px;
    }

    .img-top {
        position: absolute;
        width: 600px;
        top: 0;
        z-index: 0;
    }

    .placeholder-left {
      left: 0;
    }

    .placeholder-right {
      right: 0;
    }

    @media (max-width: 768px) {
      .logo-text {
        font-size: 2.5rem;
      }

      .main {
        flex-direction: column;
        align-items: center;
      }

      .placeholder-img {
        width: 120px;
      }
    }