/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: "Black Han Sans", sans-serif;
  background-image: url('background-img.jpg');
  /* background-size: cover; */
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
} */

.coming-soon-wrap {
  text-align: center;
  padding: 20px;
  /* max-width: 500px; */
  /* width: 90%; */
}

.logo img {
  max-width: 250px;
  margin-bottom: 30px;
}

h1 {
  font-family: "Black Han Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  /* color: #b42131; */
}

p {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

p a {
    font-family: "Lato", sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

#countdown div {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  min-width: 75px;
}

#countdown span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
}

#countdown small {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  #countdown div {
    padding: 15px;
    min-width: 60px;
  }
}
