/* styles.css */
body {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  background: linear-gradient(to bottom right, #0ff 0%, #f0f 100%);
  color: #fff;
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 2px #000;
  overflow: auto; /* Allow scrolling if content overflows */
}

.surfboard {
  width: 50px;
  height: 150px;
  background: linear-gradient(to bottom, #ffe600, #ff8c00);
  position: absolute;
  animation: spin 5s linear infinite;
  border-radius: 25px;
  z-index: -1;
  top: initial;
  bottom: initial;
  left: initial;
  right: initial;
}

/* Media queries for responsive design */
@media only screen and (max-width: 600px) {
  .surfboard {
    display: none;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1200px) {
  .surfboard {
    width: 30px;
    height: 90px;
    position: relative;
    top: 20%;
    left: 20%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Additional styles to position surfboards */
#surfboard-1 {
  top: 20%;
  left: 20%;
  transform: translate(-50%, -50%) rotate(0deg);
}

#surfboard-2 {
  top: 20%;
  right: 20%;
  transform: translate(-50%, -50%) rotate(0deg);
}

#surfboard-3 {
  bottom: 20%;
  left: 20%;
  transform: translate(-50%, -50%) rotate(0deg);
}

#surfboard-4 {
  bottom: 20%;
  right: 20%;
  transform: translate(-50%, -50%) rotate(0deg);
}

marquee {
  font-size: 1.5em;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 1em;
  background: rgba(0, 0, 0, 0.8);
  border: 4px double #39ff14;
  box-shadow: 0 0 20px #39ff14;
}

header {
  text-align: center;
  background: #ff00ff;
  padding: 1em;
  border-bottom: 5px groove #00ffff;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
}

nav a {
  margin: 0 15px;
  color: #00ffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5em;
}

nav a:hover {
  text-decoration: underline;
  color: #ffff00;
}

main {
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

footer {
  margin-top: 2em;
  font-size: 0.9em;
  text-align: center;
  color: #ccc;
  border-top: 2px dashed #00ffff;
  padding-top: 1em;
}

.gallery img {
  width: 200px;
  margin: 10px;
  border: 3px solid #ff00ff;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff;
}

.philip-pic {
  width: 300px;
  float: right;
  margin-left: 1em;
  border: 3px dashed #39ff14;
  border-radius: 10px;
  box-shadow: 0 0 15px #ff00ff;
}

p {
  font-size: 1.5em;
}
