/* Set up Montserrat as the default font family */
body {
    font-family: "Montserrat", sans-serif;
    margin: 0 1rem;
}
  
/* Set up responsive images */
img {
    max-width: 100%;
    height: auto;
}
  
/* Set up responsive layout for different screen resolutions */
@media screen and (min-width: 768px) {
    body {
        max-width: 768px;
        margin: 10px auto;
    }
}
.image-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
  
.image-container img {
    width: 25%;
    height: auto;
}  
  