body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #080b2a;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    position: relative;
    padding: 20px 40px;
    background-color: #080b2a;
  }
  
  header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, #ff1d25, #7e00d5, #0033cc);
    z-index: 1;
  }
  
  
  .logo {
    color: #ff1d25;
    width: 28px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
  }
  #logo_image{
    height: 28px;
  }

  .dots {
    position: absolute;
  }
  
  .dots-left {
    left: 0;
    transform: scaleX(-1);
  }
  
  .dots-right {
    right: 0;
    
  }

  main {
    position: relative;
    padding: 100px 40px 60px;
    flex-grow: 1;
    overflow: hidden;
  }
  
  main h1 {
    margin-left: 250px;
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(to right, #ED0404, #870303);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  main h2 {
    margin-right: 250px;
    text-align: right;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 50px;
    font-weight: 300;
    font-family: "Audiowide", sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-text-stroke: 0.9px #D40000;
  text-shadow: 0 0 0.6px #D40000;
  }
  
  main p{
    color: #FFFFFF;
    font-size: 28px;
    font-family: "Yantramanav", sans-serif;
    font-weight: 200;
    font-style: normal;
    text-align: center;
  }

  .contact-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: "Yantramanav", sans-serif;
  font-size: 24px;
  min-width: 250px;
  text-decoration: none;
}

.contact-item img {
  width: 24px;
  height: 24px;
}



  footer {
    position: relative;
    background: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    font-size: 12px;
    flex-wrap: wrap;
  }
  
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff1d25, #7e00d5, #0033cc);
    z-index: 1;
  }

  #logo_image_footer{
    height: 20px;
  }
  
  .footer-left {
    color: #ff1d25;
    font-weight: bold;
    font-size: 14px;
  }
  
  .footer-right img {
    width: 24px;
    margin-left: 15px;
  }
  footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to left, #ff1d25, #7e00d5, #0033cc);
  z-index: 1;
}



/* WERSJA MOBILNA: telefony – do 767px */
@media (max-width: 767px) {
    #logo_image {
        height: 21px;
      }

    main h1,
    main h2,
    main p {
      margin: 0 auto;
      text-align: center;
    }
  
    main h1 {
      font-size: 26px;
      margin-bottom: 15px;
    }
  
    main h2 {
      font-size: 16px;
      margin-bottom: 25px;
    }
  
    main p {
      font-size: 18px;
      padding: 0 10px;
    }
  
    .dots {
      display: none;
    }
  
    header {
      padding: 15px 20px;
    }
  
    footer {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }

    .footer-left {
      display: flex;
      align-items: center;
    }

    .footer-right {
      margin-top: 10px;
    }
  
    .footer-right img {
      margin-left: 10px;
      margin-right: 10px;
    }
  }
  
  /* WERSJA TABLET: 768px – 1024px */
  @media (min-width: 768px) and (max-width: 1024px) {
    main h1,
    main h2,
    main p {
      margin: 0 auto;
      text-align: center;
    }
  
    main h1 {
      font-size: 30px;
      margin-bottom: 15px;
    }
  
    main h2 {
      font-size: 20px;
      margin-bottom: 25px;
    }
  
    main p {
      font-size: 22px;
      padding: 0 10px;
    }
  
    .dots {
      display: none;
    }

    .footer-left {
      display: flex;
      align-items: center;
    }
  }
  