/* 90s Style - Neon, Space Theme */
body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-image: url('content/132.png');
  background-color: black;
  color: #00ff00;
  text-align: center;
  margin: 25px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 3px solid #ff00ff;
  box-shadow: 0 0 20px #ff00ff;
  position: relative; /* Needed for positioning the GIFs inside */
}

h1 {
  color: #00ff00;
  font-size: 2.5em;
  text-shadow: 2px 2px 5px #ff00ff;
}

.description {
  font-size: 1.2em;
  color: #ffff00;
  text-shadow: 1px 1px 2px #00ffff;
}

.port-display {
  font-size: 2em;
  color: #ff00ff;
  background-color: #222;
  border: 2px dashed #00ffff;
  padding: 15px;
  margin: 20px 0;
}

.button {
  font-size: 1em;
  padding: 10px 20px;
  margin: 10px;
  background-color: #000;
  color: #00ff00;
  border: 2px solid #ff00ff;
  cursor: pointer;
  text-shadow: 1px 1px 2px #00ffff;
  box-shadow: 0 0 10px #ff00ff;
  transition: background-color 0.3s, color 0.3s;
}

.button:hover {
  background-color: #222;
  color: #ffff00;
}

.footer {
  color: #888;
  font-size: 0.8em;
  margin-top: 40px;
  text-shadow: 1px 1px 2px #ff00ff;
}


/* 88x31 Image Links Styling */
.image-links {
  display: flex;
  justify-content: center;
  gap: 10px; /* Space between images */
  margin-top: 20px;
}

.image-links img {
  width: 88px;
  height: 31px;
  border: 2px solid #ff00ff; /* Neon border */
  box-shadow: 0 0 5px #00ff00;
  transition: transform 0.3s, box-shadow 0.3s;
  
}

.image-links img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  box-shadow: 0 0 10px #ff00ff;
}

/* Styling for the GIFs at the top corners */
.corner-gif {
  width: 60px; /* Adjust size as needed */
  height: auto;
  position: absolute;
}

.top-left {
  top: 15px;
  left: 15px;
}

.top-right {
  top: 15px;
  right: 15px;
}
