﻿/* Base page styles */
body {
  background-color: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Anchor links styling */
a {
  color: #00ff00;
  text-decoration: none;
}
a:hover {
  color: #00ffff;
}

/* Navigation bar */
.auto-style3, .nav-bar {
  padding: 10px 0;      /* vertical padding */
  text-align: center;
}

.auto-style3 a, .nav-bar a.nav-link {
  margin: 0 20px;       /* horizontal spacing between links */
  padding: 4px 0;
  color: #00ff00;
  text-decoration: none;
  display: inline-block;
}

.auto-style3 a:hover, .nav-bar a.nav-link:hover {
  color: #00ffff;
}

/* Alternative nav-links flex container (if used) */
.nav-links {
  margin: 1rem auto;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Page header */
.page-header {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 2rem 0;
}

/* Content images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border: 0;
}

/* Main content block */
.main-content {
  padding: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Link block below images */
.links {
  margin-top: 2rem;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Harry’s books */
.harry-books {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #00ff00;
}
.links {
  margin-top: 2rem;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* increased gap from 0.5rem to 1.5rem */
  align-items: center; /* optional, centers the links horizontally */
}

.links a {
  display: inline-block;
  padding: 8px 16px; /* adds clickable space around links */
  color: #00ff00;
  text-decoration: none;
}

.links a:hover {
  color: #00ffff;
}
