body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-image: url('images/AttachmentBG.webp');
  background-size: cover;
  background-position: center;
  color: #00ffcc;
}

.attachment-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  backdrop-filter: brightness(0.4);
  padding: 40px 20px;
}

.attachment-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 4px solid #00ffcc;
  box-shadow: 0 0 20px #00ffcc;
  border-radius: 10px;
  margin-bottom: 20px;
}

.attachment-info {
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 0 15px #00ffcc;
  width: 100%;
}

.attachment-info h2 {
  margin-top: 0;
  color: #00ffff;
}

.attachment-info p {
  color: #00ffff;
}

.attachment-info h3 {
  color: #ff9900;
}

.attachment-info ul {
  list-style: none;
  padding: 0;
}

.attachment-info li {
  margin-bottom: 8px;
}

.attachment-info li strong {
  color: #ffffff;
}

.attachment-info li {
  color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .attachment-container {
    padding: 20px 10px;
  }

  .attachment-image {
    max-width: 300px;
  }

  .attachment-info {
    max-width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .attachment-image {
    max-width: 250px;
  }

  .attachment-info {
    padding: 10px;
  }
}