* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Courier New', Courier, monospace;
}

.container {
  position: relative;
  height: 100vh;
  color: white;
  overflow: hidden;
}


.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://www.myacebazar.com/assets/banner_new.svg');
  background-size: cover;
  background-position: center;
  
  z-index: -1;
  animation: backgroundBlur 13s forwards; 
}


.logo-img {
  width: 100px;
  height: auto;
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.2rem;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.center-text h1 {
  font-size: 6.5rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  color: white;
  animation: colorChange 3s infinite alternate;
}

@keyframes colorChange {
  from {
    color: white;
  }
  to {
    color: #CC9933;
    text-shadow: 0 0 10px #CC9933;
  }
}

.center-text hr {
  width: 60px;
  margin: 15px auto;
  border: 1px solid white;
  animation: hrColorChange 3s infinite alternate;
}

@keyframes hrColorChange {
  from {
    border-color: white;
  }
  to {
    border-color: #CC9933;
    box-shadow: 0 0 10px #CC9933;
  }
}

.expired {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}

.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1rem;
}