/* ====== Base Styles ====== */
body {
  font-family: Georgia, serif;
  max-width: 700px;
  margin: 40px auto;
  padding: 0 15px;
  line-height: 1.5;
  color: #222;
  background: #fff;
}

h1 {
  margin-bottom: 0;
  font-size: 1.8em;
}

h2 {
  font-size: 1.1em;
  margin-top: 1.5em;
}

a {
  color: #0044aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sep {
  text-align: center;
  margin: 1.2em 0;
  color: #666;
}

/* ====== Layout ====== */
.top {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #ccc;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  body {
    margin: 20px auto;
    font-size: 1em;
  }

  .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .photo {
    width: 200px;
    height: 200px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1em;
  }

  ul {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95em;
  }

  .photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #ccc;
  filter: brightness(95%) contrast(95%);
}

}

hr.sep {
  border: none;
  border-top: 1px solid #333;
  margin: 2em 0;
}
