body {
    margin: 0;
    padding: 0;
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
    background-color: #000;
    background-image: url('./images/image2.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  h2 {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 100px;
  }

  .content {
    margin-top: 30px;
    text-align: center; 
  }
  
  .logo {
    max-width: 750px;
    height: auto;
    animation: lightEffect 1s infinite alternate;
  }
  
  .countdown {
    font-size: 24px;
    color: white;
  }
  
  @keyframes lightEffect {
    0% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  
  @media (max-width: 768px) {
    .logo {
        max-width: 500px; 
    }
    h2 {
        font-size: 60px; 
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 300px; 
    }
    h2 {
        font-size: 40px; 
    }
    #countdown {
        width: auto; 
    }
    #countdown #tiles > span {
        font-size: 32px; 
    }
}

#countdown {
    text-align: center;
    background: #222;
    background-image: -webkit-linear-gradient(top, #222, #333, #333, #222); 
    background-image: -moz-linear-gradient(top, #222, #333, #333, #222);
    background-image: -ms-linear-gradient(top, #222, #333, #333, #222);
    background-image: -o-linear-gradient(top, #222, #333, #333, #222);
    border: 1px solid #111;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    padding: 20px 0;
}

@media (max-width: 576px) {
    #countdown {
        width: 90%; 
        max-width: 400px; 
        margin: 0 auto; 
    }
}

#countdown #tiles > span {
    text-align: center;
    color: #111;
    background-color: #ddd;
    border-top: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    margin: 0 7px;
    padding: 18px 14px;
    display: inline-block;
    position: relative;
}

#countdown #tiles > span:before {
    content: "";
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%;
    left: -3px;
    z-index: -1;
}

#countdown #tiles > span:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    border-top: 1px solid #333;
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
}

@media (min-width: 768px) {
    #countdown #tiles > span {
        font-size: 36px; 
        margin: 0 20px; 
        padding: 12px 12px;
    }

    #countdown #tiles > span:before {
        height: 20px; 
        padding: 0 4px; 
        top: 38%; 
    }

    #countdown #tiles > span:after {
        height: 1px; 
        border-top-width: 1px;
        top: 48%; 
    }
}

.footer-section {
    background: #151414;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.copyright-area{
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a{
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a{
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}