body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.hero-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.info-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.instagram-icon {
  width: 40px;
  height: auto;
  margin: 10px;
  transition: transform 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.1);
}

.hero-image {
  filter: 
    drop-shadow(1px 0 0 turquoise)
    drop-shadow(-1px 0 0 turquoise)
    drop-shadow(0 1px 0 turquoise)
    drop-shadow(0 -1px 0 turquoise);
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

.main-title {
  text-align: center;
  margin: 40px 0;
  letter-spacing: 2px;
}

.year {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  color: #00ffcc;
  margin-top: 10px;
  text-shadow: 
    0 0 10px #00ffcc,
    0 0 20px #00ffcc66,
    0 0 40px #00ffcc33;
}

