
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

h2, h3 {
  margin-bottom: 10px;
  color: #444;
}

/* Paragraphs & Lists */
p {
  margin-bottom: 15px;
}

ol {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 20px;
  padding-left: 20px;
}

ol li {
  margin-bottom: 10px;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Gallery layout for main index page */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Links styling */
a {
  text-decoration: none;
  color: #0077cc;
}

a:hover {
  color: #005fa3;
}

/* Address block */
address {
  font-style: normal;
  background: #f0f0f0;
  padding: 10px;
  border-radius: 6px;
  margin-top: 15px;
  display: inline-block;
}

/* Footer or note */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}
