    body,
    html {
      margin: 0;
      padding: 0;
      overflow: hidden;
      background: #fff;
      font-family: 'impactregular';
      font-size: 16px;
    }

    @font-face {
      font-family: 'impactregular';
      src: url('../fonts/impact.woff2') format('woff2'),
        url('../fonts/impact.woff') format('woff');
      font-weight: normal;
      font-style: normal;

    }

    .hero_section {
      position: relative;
      height: 100vh;
      background: url(../images/main_bg.jpg) no-repeat center top;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 2;
      width: 600px;
      margin: 0 auto;
    }


    .heading1 {
      font-family: 'impactregular';
      font-size: 3rem;
      color: #fff;
      margin-top: 5px;
      margin-bottom: 0;
    }

    h4 {
      font-family: 'impactregular';
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 10px;
    }

    .logo {
      margin: 0 0 1em 0;
    }

    .paragraph,
    .counter {
      font-family: 'Open Sans', sans-serif;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
    }

    #countdown {
      font-family: 'impactregular';
      color: rgb(179, 182, 1);
    }

    .logo img {
      width: 7.5em;
      height: 7.5em;
    }

    .couter {
      display: flex;
      gap: 15px;
      align-items: center;
      justify-content: center;
    }

    .middel h2 {
      font-size: 1.8em;
      color: #fff;
      font-weight: normal;
      letter-spacing: 1px;
    }

    .middel h2 span {
      font-size: 1.6em;
    }

    .middel h3 {
      font-size: 1.6em;
      color: #fff;
      font-weight: normal;
      color: #FED402;
      text-transform: uppercase;

    }

    .middel h3 span {
      font-size: 1.8em;
      width: 100%;
      display: inline-block;
      letter-spacing: 1px;
    }

    .slogan h1 img {
      width: 1.1em;
      height: 1.1em;
    }

    .slogan h1 {
      font-size: 2.7em;
      color: #FED402;
      letter-spacing: 1px;
      font-weight: normal;
      display: flex;
      gap: 15px;
      align-items: center;
      justify-content: center;
    }

    .slogan h2 {
      font-size: 1.7em;
      color: #fff;
      letter-spacing: 1px;
      font-weight: normal;
    }

    .button a {
      display: inline-block;
      font-family: 'impactregular';
      padding: 15px 30px;
      background-image: linear-gradient(to top, rgb(159, 119, 189), rgb(88, 1, 135));
      color: #fff;
      font-size: 40px;
      line-height: 48px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      animation: buttonAnimation 2s infinite;
      text-decoration: none;
    }

    .button a:hover {
      animation-play-state: paused;
    }

    .footer h4 {
      font-size: 1.7em;
      color: #fff;
      font-weight: normal;
      line-height: 1.4;
    }

    .footer h5 {
      font-size: 1.7em;
      color: #fff;
      font-weight: normal;
    }

    .footer h4 img {
      width: 1em;
      height: 1em;
    }


    @keyframes buttonAnimation {
      0% {
        transform: scale(1);
        background-color: blue;
      }

      50% {
        transform: scale(1.2);
        background-color: red;
      }

      100% {
        transform: scale(1);
        background-color: blue;
      }
    }

    .footer {
      margin: 0.5em 0 0 0;
    }

    .Subscribe_Now {
      font-size: 1.4em;
      color: white;
      text-decoration: none;
      padding: 0.4em 2em;
      border-radius: 10px;
      animation: blink-animation 1s infinite;
      background: #0088CC;
      border: 0.2em solid #A3E9FF;
      display: inline-block;
      letter-spacing: 1px;
      margin: 0.5em 0 0.5em;
    }

    .Subscribe_Now:hover {
      background: #eac407;
    }

    .telegram {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0.8em 0 1em 0;
    }

    .telegram img {
      width: 1.4em;
      height: 1.4em;
      animation: animName 2s linear infinite;
    }

    @keyframes animName {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    .telegram a {
      font-size: 1.4em;
      color: white;
      text-decoration: none;
      padding: 0.3em 1em;
      border-radius: 10px;
      animation: blink-animation 1s infinite;
      background: #0088CC;
      border: 0.2em solid #A3E9FF;
      display: flex;
      letter-spacing: 1px;
      gap: 0.5em;
      align-items: center;
    }

    @keyframes blink-animation {
      0% {
        background-color: #eac407;
      }

      30% {
        background-color: #eac407;
      }

      50% {
        background-color: #0088CC;
      }

      70% {
        background-color: #eac407;
      }

      100% {
        background-color: #eac407;
      }
    }


    @media (max-width: 736px) {
      body {
        font-size: 12.5px;
      }

      .hero_section {
        width: 100%;
      }

      .telegram a,
      .Subscribe_Now {
        border-radius: 6px;
      }
    }

    @media (max-width: 375px) {
      body {
        font-size: 11.8px;
      }

      .Subscribe_Now {
        padding: 0.4em 1.8em;
      }
    }

    @media (max-width: 360px) {
      body {
        font-size: 11px;
      }
    }

    @media (max-width: 320px) {
      body {
        font-size: 8.2px;
      }
    }