/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 10px;
  }
  header {
    background-color: rgb(18, 160, 215);
    text-align: center;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    padding: 10px;
}

/* Grid Items */
.grid-item {
    background-color: blue;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
}
h2 {
  text-align: center;
}
@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.05); /* Slightly enlarge the image */
      opacity: 0.9;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

/* Apply the pulsing animation to the images */
.grid-item img {
  width: 100%;
  height: auto;
  animation: pulse 2s infinite ease-in-out; /* Loop the pulse animation */
}

/* Staggered animation delays for each image */
.grid-item:nth-child(1) img {
  animation-delay: 0s;
}

.grid-item:nth-child(2) img {
  animation-delay: 0.2s;
}

.grid-item:nth-child(3) img {
  animation-delay: 0.4s;
}
footer{
  background-color: rgb(18, 160, 215);
  text-align: center;
}
footer nav{
  background-color: rgb(18, 160, 215);
  text-align: left;
}