h1{
    text-shadow: 2px;
}

h2{
    text-align: center;
}

body{
    background-color: white;
}
h1{
    text-align: center;
}
h3{
    text-align: center;
    color: brown;
}
.div-container {
    display: flex; /* Align items in a row */
    justify-content: center; /* Center images horizontally */
    gap: 10px; /* Space between images */
  }
  
  .div-container img {
    width: 200px; /* Set image width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
  }
  