 a {
   color: red;
   text-decoration: none;
    }
    a:hover {
    color:orange;
    }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: Arial, sans-serif;
        background-color: #fff;
        color: red;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        text-align: center;
      }

      /* Container */
      .container {
        width: 100%;
        max-width: 800px; /* Max width for larger screens */
        padding: 20px;
      }

      .content h1 {
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 10px;
      }

      .content h2 {
        font-size: 4rem;
        font-weight: bold;
        margin-bottom: 20px;
      }

      .content p {
        font-size: 1.5rem;
      }

      .content a {
        color: red;
        text-decoration: underline;
      }

      .content a:hover {
        color: #ffcc80;
      }

      .loader-line {
        width: 100%;
        height: 3px;
        position: relative;
        overflow: hidden;
        background-color: #ddd;
        margin: 10px auto;
        border-radius: 20px;
      }

      .loader-line:before {
        content: "";
        position: absolute;
        left: -50%;
        height: 3px;
        width: 40%;
        background-color: red;
        animation: lineAnim 1s linear infinite;
        border-radius: 20px;
      }

      @keyframes lineAnim {
        0% {
          left: -40%;
        }
        50% {
          left: 20%;
          width: 80%;
        }
        100% {
          left: 100%;
          width: 100%;
        }
      }

      /* Media Queries for responsiveness */
      @media screen and (max-width: 768px) {
        .content h2 {
          font-size: 2.5rem; /* Adjust font size on tablets */
        }

        .content h1 {
          font-size: 1.5rem;
        }

        .content p {
          font-size: 1.2rem;
        }
      }

      @media screen and (max-width: 480px) {
        .content h2 {
          font-size: 2rem; /* Further reduce font size on mobile */
        }

        .content h1 {
          font-size: 1.2rem;
        }

        .content p {
          font-size: 1rem;
        }

        .container {
          padding: 10px;
        }
      }
