* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: calibri, sans-serif;
 
}
.gallery img {
  width: 100%;
  max-width: 800px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}
.header {
  text-align: center;
  padding: 10px;
  background: linear-gradient(180deg, #16147e, #100f65);
  color: #fff;
  border-bottom: 0px solid #9343ff;
  font-size: 2.5vw;
  box-shadow: 0 10px 10px rgba(0,0,0,0.7);
@media screen and (min-width: 1200px)  {
  h1 {
    font-size: 70px;
  }
}
}
.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  max-width: 1800px;
  margin: 0 auto;
  gap: 24px;
}
.gallery::after {
  content: "";
  width: 800px;
  height: 500px;
}
.gallery p {
  width: 800px;
  text-align: center;
  height: 20px;
  margin: 0 0 40px 0;
  font-size: 1.2rem;
}
hr {
  height: 30px;
  background-color: rgba(0,0,0,0);
  border: none;
}
footer {
  color: black;
  text-align: center;
  font-size: 1rem;
  font-family: calibri, sans-serif;
}
a {
  color: crimson;
}
a:visited {
  color: crimson;
}
a:hover {
  color: aqua;
}
a:active {
  color: gold;
}