@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Page Background */
body {
  background-color: rgb(255, 255, 255);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

/* Animated School Name */
.keyboard {
  margin-top: -15px;
}

.key {
  font-size: 4vw;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 2px;
  transition: transform 0.2s;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 5px rgb(255, 255, 255);
  margin-top: 0px;
}
.website-tag{
  justify-content: center;
  justify-items: center;
  position: relative;
}
.website-tag h3{
  font-size: 28px;
  font-family: "Libre Baskerville", serif;
}
.heading-tag {
  margin-top: 10px;
}
.heading-tag h3{
 font-size:35px;
 font-family: "Libre Baskerville", serif;
}
/* Maintenance Image */
.maintenance_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -25px;
}

.maintenance_bg img {
  width: 100%;
  max-width: 450px;
  height: auto;
  
}


/* Maintenance Message */
.content_box {
  justify-content: center;
  justify-items: center;
  margin-top: -90px;
 
}

h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 5px;
}

p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 15px;
}

/* Social Media Icons */
.social-icons {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  font-size: 24px; /* Adjust icon size */
  color: #fff;
  background: #ff9800;
  text-decoration: none;
  border-radius: 50%; /* Makes it a perfect circle */
  transition: transform 0.3s ease;
  border: 3px solid #e68900; /* Border color */
  width: 60px; /* Fixed width */
  height: 60px; /* Fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a:hover {
  transform: scale(1.2);
  border-color: #ff5722; /* Change border color on hover */
}


/* Contact Button */
.contact-btn {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background: #ff9800;
  display: inline-block;
  border-radius: 5px;
  font-size: 15px;
  transition: 0.3s;
  margin-bottom: 5px;
}

.contact-btn:hover {
  background: #e68900;
  text-decoration: none;
  transform: scale(1.05);
}

/* Key Animations */
@keyframes pressDown {
  30%, 40%, 100% { transform: translateY(0); }
  35% { transform: translateY(10px); }
}

/* Apply Different Animations to Each Letter */
.key:nth-child(1) { animation: pressDown 2s infinite; }
.key:nth-child(2) { animation: pressDown 2.5s infinite; }
.key:nth-child(3) { animation: pressDown 3s infinite; }
.key:nth-child(4) { animation: pressDown 2.2s infinite; }
.key:nth-child(5) { animation: pressDown 3.5s infinite; }
.key:nth-child(6) { animation: pressDown 2.8s infinite; }
.key:nth-child(7) { animation: pressDown 3.2s infinite; }
.key:nth-child(8) { animation: pressDown 2.6s infinite; }
.key:nth-child(9) { animation: pressDown 3.1s infinite; }
.key:nth-child(10) { animation: pressDown 2.4s infinite; }
.key:nth-child(11) { animation: pressDown 3.3s infinite; }
.key:nth-child(12) { animation: pressDown 2.7s infinite; }
.key:nth-child(13) { animation: pressDown 3s infinite; }
.key:nth-child(14) { animation: pressDown 2.5s infinite; }
.key:nth-child(15) { animation: pressDown 3.2s infinite; }
.key:nth-child(16) { animation: pressDown 2.9s infinite; }
.key:nth-child(17) { animation: pressDown 3.4s infinite; }
.key:nth-child(18) { animation: pressDown 2.8s infinite; }
.key:nth-child(19) { animation: pressDown 3.5s infinite; }
.key:nth-child(20) { animation: pressDown 2.6s infinite; }
.key:nth-child(21) { animation: pressDown 3.1s infinite; }
.key:nth-child(22) { animation: pressDown 2.9s infinite; }
.key:nth-child(23) { animation: pressDown 3.5s infinite; }
.key:nth-child(24) { animation: pressDown 2.5s infinite; }
.key:nth-child(25) { animation: pressDown 3.1s infinite; }
.key:nth-child(26) { animation: pressDown 2.7s infinite; }
.key:nth-child(27) { animation: pressDown 2.8s infinite; }

 /* Responsive Styles */
 @media (max-width: 768px) {
  .key {
      font-size: 4vw;
  }

  .maintenance_bg img {
      width: 90%;
  }

  .social-icons a {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }
}
@media (max-width: 480px) {
  .key {
      font-size: 2vw;
  }

  h3 {
      font-size: 20px;
  }

  p {
      font-size: 14px;
  }

  .social-icons {
      gap: 8px;
  }
}