body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* styles.css */
a {
  color: white; /* Set the desired color for the link */
  text-decoration: none; /* Optional: Remove the default underline */
}

a:hover {
  color: red; /* Set a different color when the link is hovered over */
}




.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1px;
    padding: 1px;
    border: 1px solid #333333;
}

.gallery img {
    width: 100%;
    height: auto;
}

footer {
    background-color: #333333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
