  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        line-height: 1.5;
      }

      body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #f8fafc;
        min-height: 100vh;
        padding: 2rem;
      }

      main {
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
      }

      main h1 {
        font-size: 36px;
        font-weight: 600;
        text-align: center;
      }

      main .lines {
        color: #D9D9D9;
        margin: 10px 0;
        font-weight: 600;
      }

      article {
        display: flex;
        align-items: center;
        gap: 40px;
        width: 100%;
        margin-bottom: 20px;
      }

      article img {
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
        max-width: 200px;
        height: 175px;
      }


      article .content h2 {
        font-size: 20px;
        margin-bottom: 14px;
        font-weight: 600;
      }

      article .content p {
        font-style: 14px;
        font-weight: 400;
        color: #4D5562;
      }


      .author-info {
        font-size: 14px;
        text-align: center;
        margin: 16px 0;
        color: rgb(55, 65, 81);
      }

      .author-info a {
        text-decoration: none;
      }


      @media (max-width: 640px) {
        article {
            flex-direction: column;
            align-items: flex-start;
            margin-left: 40px;
        }

        article .content {
            width: 60%;
            flex: unset;
        }

        article .content h2 {
            font-size: 20px;
        }
      }


      @media (min-width: 768px) {
        main {
            max-width: 750px;
        }

        main h1 {
            font-size: 36px;
        }
      }