@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.container .image {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

body::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: -1;
  opacity: 0.2;
}

.container header {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.container p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
}

.container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin: 2rem;
  border: 1px solid white;
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  background: rgba(250, 250, 250, 0.2);
}

.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.time .number {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #eee;
}

.time .text {
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

@media screen and (max-width: 480px) {
  .container header {
    font-size: 50px;
  }
}
body {
  font-family: sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #222; 
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.logo {
  max-width: 200px; 
  max-height: 200px; 
  border-radius: 50%;
  animation: fade 2s ease-in-out infinite; 
}

.content {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.preloader.hidden {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.content.visible {
  opacity: 1;
}

@keyframes fade {
  0% {
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
}