@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: "PT Serif", serif;
  background: white;
  margin: 0;
  padding: 0px;
}
h1 {
  background-color: rgb(0, 0, 0);
  color: white;
  text-align: center;
  padding: 0px;
  border-radius: 0px 0px 0px 0px;
  margin: 0px;
}
h2{
  box-sizing: border-box;
  background-color: rgb(0, 0, 0);
  color: white;
  text-align: center;
  border-radius: 0px 0px 0px 0px;
  margin: 0px;
}
header{
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  text-align: center;
  margin: 0px;
}
header div nav ul{
  list-style: none;
  margin: 0px;
  margin-bottom: 15px;
}
header div nav ul li{
  display: inline-block;
}
header div nav ul li a{
  color: #ffffff;
  font-size: 1.2em;
  text-decoration: none;
  margin-right: 15px;
  list-style: none;
}
main{
  text-align: center;
}
.gallery {
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.959);
  transition: transform 0.3s;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
}