body {
  font-family: "Josefin Sans", sans-serif;
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem;
  line-height: 1.6;
  color: #222;
  background-color: #fdfdfd;
}

h1 {
  font-size: 2.5rem;
  color: rgb(195, 63, 63);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
}

footer {
  margin-top: 4rem;
  text-align: center;
}

footer a {
  text-decoration: none;
  font-weight: bold;
  color: rgb(195, 63, 63);
  transition: color 0.3s;
}

footer a:hover {
  color: rgb(165, 40, 40);
}

img {
  width: 100%;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.vita-gallery {
  display: flex;
  flex-direction: row;

  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.vita-gallery img {
  max-width: 30vw;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  flex: 1 1 250px;
}

.vita-gallery img:hover {
  transform: scale(1.02);
}
