/* css styles */
.download-button {
  background-color: #4CAF50; /* Green background color */
  border: none; /* Remove button border */
  color: white; /* Text color */
  padding: 12px 24px; /* Button padding */
  text-align: center; /* Center button text */
  text-decoration: none; /* Remove underline on link */
  display: inline-block; /* Display as inline-block element */
  font-size: 16px; /* Set font size */
  border-radius: 5px; /* Add rounded corners */
}

.download-button:hover {
  background-color: #3e8e41; /* Darker green hover color */
}

.download-button a {
  color: white; /* Set link text color to white */
  text-decoration: none; /* Remove underline on link */
}


.photo-scroll {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
}

.photo-scroll img {
  display: inline-block;
  height: 200px;
  margin-right: 10px;
}
