/* Reset some default styles */
body, h1, p {
    font-family: "Silkscreen", sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  text-align: center;
}

header {
    font-family: "Silkscreen", sans-serif;
  background: rgba(0, 0, 0, 0.096);
  padding: 20px;
}

.header-img {
  
  max-width: 560px;
  height: auto;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Grows to 120% */
  }
}

main {
    font-family: "Silkscreen", sans-serif;
  margin: 50px auto;
  max-width: 600px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.171);
  border-radius: 10px;
}

footer {
    font-family: "Silkscreen", sans-serif;
  margin-top: 50px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.116);
}
.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}
