@font-face {
  font-family: 'Josefin Slab';
  src: url('JosefinSlab-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



body {
  background-color: black;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


#infoStrip {
  font-family: 'Josefin Slab', sans-serif;  /* Updated font-family */
  position: fixed;
  bottom: 0;  /* Changed from top: 0; */
  left: 0;
  right: 0;
  height: 10%;
  background-color: rgba(25, 175, 237, 0.8); /* Dark blue, 50% opacity */
  color: white;
  font-size: 5vh;
  opacity: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
}
        
#infoStrip {
    /* Existing styles */
    justify-content: space-between; /* Changed from center to space-between */
}

#timePart, #datePart {
    font-size: 6vh;
    padding: 0 2%; 
    opacity: 0.8;  /* 50% opacity */
}






.preloader {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.content {
  width: 100%;
  height: 100vh;
  background: linear-gradient(#19afed, #ffee22);   
}

.bubbles {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  will-change: transform;
  transition: 2s;
}
.bubble:hover {
  transform: scale(2);
  background: #ffbf80;
}

.bubble-container {
  position: absolute;
  bottom: 0;
  animation: bubbleRise 10s infinite ease-in;
  will-change: transform;
}

@keyframes bubbleRise {
  0% {
    opacity: 0;
    bottom: 0;
  }
  15% {
    bottom: 0;
    opacity: 0.1;
    margin-left: 0px;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    margin-left: 50px;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}
.spinner-2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  margin: 50px auto;
  display: inline-block;
  border: 3px solid transparent;
  border-top-color: orange;
  animation: spinall 2s linear infinite;
}
.spinner-2:after, .spinner-2:before {
  content: "";
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
}

.spinner4:after {
  position: absolute;
  top: 3%;
  left: 3.5%;
  border: 3px solid transparent;
  border-top-color: orange;
  animation: spinall 3s linear infinite;
}

.spinner4:before {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 10%;
  left: 10%;
  border: 3px solid transparent;
  border-top-color: orange;
  animation: spinall 2s linear infinite;
}

@keyframes spinall {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(360deg);
  }
}