/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 40px 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 10px;
}

h2 {
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
  margin-top: 40px;
  color: #ffcc00;
}

/* Image Styling */
img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  border: 4px solid #ffcc00;
  box-shadow: 0 0 10px #000;
  display: block;
  margin: 20px 0;
}

/* Navigation Links */
nav a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}
nav a:hover {
  background-color: #333;
  color: #fff;
}

/* Text & Footer */
a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}
p {
  line-height: 1.6;
}
footer {
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
  margin: 30px 0;
}

.image-row img {
  max-width: 45%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}