*{
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(200, 134, 145);
    color: black;
    text-align: center;
}

h1 {
    font-family: "Monoton", sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 15em;
}

a {
    text-decoration: none;
    color: black;
    
}

.pictures {
  display: flex;
  flex-wrap: wrap; /* Allows images to wrap to the next line */
  justify-content: space-around; /* Distributes space between images */
  align-items: flex-start; /* Align images to the top */
}

a {
  width: 300px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 10px; /* Adds space between rows */
}