/* General layout */
body {
  background: #0f6996;   /* Deep ocean blue */
  padding: 40px;
  font-family: sans-serif;
}

/* Headings and text */
h1, h2, p {
  color: #ff33cc;             /* Neon pink */
  background-color: #001f3f;  /* Deep navy */
  padding: 10px;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.5em;
}

/* Gallery setup */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
}

/* GIF styling */
.gallery img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border: 4px solid #001f3f;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(255, 51, 204, 0.6);
}

/* Surfline link styling */
.surf-links {
  list-style-type: none;
  padding: 0;
}

.surf-links li {
  margin: 10px 0;
}

.surf-links a {
  text-decoration: none;
  color: #00ffff; /* Aqua blue links */
  font-weight: bold;
  transition: color 0.3s ease;
}

.surf-links a:hover {
  color: #ff33cc; /* Neon pink hover */
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #fff;
  background-color: #001f3f;
  padding: 10px;
  border-radius: 8px;
}
