
h1{
    
    text-align: center;
    /* font-family: 'Courier New', Courier, monospace; */
    font-size: xx-large;
    color: royalblue;
    font-family: "Rubik Marker Hatch", system-ui;
}


p{
    font-family: "Protest Riot", sans-serif;
    font-size: 18px;

}
h2{
    font-family: "Shalimar", cursive;
    font-size: 40px;
    
}
header{
    /* font-family: "Shalimar", cursive; */
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-weight: 100;
    font-size: larger;
    
}

.header font {
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }

.rubik-marker-hatch-regular {
  font-family: "Rubik Marker Hatch", system-ui;
  font-weight: 400;
  font-style: normal;
}
.protest-riot-regular {
    font-family: "Protest Riot", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .shalimar-regular {
    font-family: "Shalimar", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  /* Marque css */

  .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: white;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee 15s linear infinite;
    min-width: 200%; /* Ensures smooth looping */
}

.marquee-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid black;
    object-fit: cover;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Duplicate content for seamless infinite effect */
.marquee-content::after {
    content: "";
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .marquee-content img {
        width: 70px;
        height: 70px;
    }
}
/* css for internet alerts */
/* General Styles */
.network-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  z-index: 1000;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  gap: 10px;
  animation: fadeInSlide 0.5s ease-in-out;
}

/* Offline Message (Red Gradient) */
#offline-message {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

/* Online Message (Green Gradient) */
#online-message {
  background: linear-gradient(45deg, #56ab2f, #a8e063);
}

/* Smooth fade-in and slide-down animation */
@keyframes fadeInSlide {
  from {
      opacity: 0;
      transform: translate(-50%, -20px);
  }
  to {
      opacity: 1;
      transform: translate(-50%, 0);
  }
}