/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #111827;
  line-height: 1.6;
  scroll-behavior: smooth;
}


.creater {
  color: #ff0000;
  position:relative;
  top: -80px;
  font-style:oblique;
  font-weight:bolder;
  font-size: 1.2rem;
  filter: invert(100%)
}

/* Container */
.container {
  max-width: 900px;
  margin: 3rem auto 4rem;
  padding: 0 1rem;
  text-align: center;
}

/* Header */
header {
  background: rgba(0, 67, 112, 0.836);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
   animation: ledcolors 10s infinite;
  
}

.header-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
   animation: ledcolors 10s infinite;
}

header h1 {
  font-size: 1.8rem;
  color: #eeff00;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
 
  
}

/* Push main content below fixed header */
main.container {
  margin-top: 100px;
}

/* Hero Section */
.hero h1 {
  font-size: 2.8rem;
  color: #eeff00;
  font-weight: 700;
  margin-bottom: 0.5rem;
  
}

.hero p {
  font-size: 1.25rem;
  color: #00fff2;
  margin-bottom: 2rem;
}

/* Grid of Buttons */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.link-button {
  background: rgb(0, 255, 64);
  border: 1px solid #0c020e;
  border-radius: 12px;
  padding: 1.75rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 1.5rem;
  color: #eeff00;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  user-select: none;
  animation: ledcolors 10s infinite;
}


.link-button i {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 30px;
  cursor: pointer;
 
  transition: 0.2s ease;
}

.link-button:hover,
.link-button:focus {
  transform: scale(1.25);
  filter: invert(100%);
}
@keyframes ledcolors {
  0% {background-color: rgb(155, 8, 155);}
  25% {background-color: rgb(169, 2, 190);}
  50% {background-color: rgb(93, 230, 2); color: black;}
  75% {background-color: rgb(3, 114, 179);}
  100% {background-color: rgb(98, 0, 255);}
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #eeff00;
  font-size: 1.2rem;
  border-top: 1px solid #e5e7eb;
  animation: ledcolors 10s infinite; 
}

/* Responsive */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .link-button {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
  .link-button i {
    font-size: 2.2rem;
  }
}