body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-y: hidden;
}

.coming-soon-container {
  background: linear-gradient(to bottom right, rgba(81, 0, 96, 0.196), rgb(28, 15, 0)), url('../images/bg2.jpg') no-repeat center center/cover;
  min-height: 100vh;
  
  color: white;
  text-align: center;
  padding: 20px;
}

.content{
display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content .icon {
  font-size: 2rem;
  /* margin-bottom: 10px; */
}

.content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.content p {
  margin: 10px 0 20px;
  font-size: 1rem;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  font-size: 1.5rem;
}

.timer div {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.1);
}

.timer small {
  display: block;
  font-size: 0.7rem;
  margin-top: 5px;
}

