body {
  margin: 0;
  background-color: #0d0d0d;
  color: #ccc;
  font-family: monospace;
  padding: 1em;
}

h1 {
  text-align: center;
  color: #6cf;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1em;
  padding: 1em;
}

.card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  padding: 0.5em;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover; 
  border-radius: 5px;
  cursor: pointer;
}


.card h2 {
  color: #6cf;
  font-size: 1.2em;
  margin-top: 0.5em;
}

.card .description {
  font-style: italic;
  color: #aaa;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  line-height: 1.4;
  margin-top: 0.5em;
}

.links {
  margin-top: 0.5em;
}

.links a {
  color: #6cf;
  margin-right: 0.5em;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
  color: #9cf;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #1c1c1c;
  padding: 1.5em;
  margin: 1em auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.about img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5em;
  border: 3px solid #333;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h2 {
  margin: 0 0 0.5em 0;
  color: #6cf;
  font-size: 1.8em;
}

.about-text p {
  margin: 0.5em 0;
  line-height: 1.6;
  font-size: 0.95em;
}

.about-text a {
  color: #6cf;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
  color: #9cf;
}
.verse {
  background: #0d1b2a;
  color: #e0e1dd;
  padding: 2rem;
  text-align: center;
  font-style: italic;
  border-bottom: 2px solid #415a77;
  font-family: 'Georgia', serif;
}

.verse blockquote {
  margin: 0;
}

.verse p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.verse cite {
  display: block;
  font-size: 1rem;
  color: #a9bcd0;
}

