body {
  font-family: 'Times New Roman', serif;
    background-image: url("Images/summer.jpg");
    background-color: #cccccc;
  color: #000000;
  margin: 20px;
}

h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  text-decoration: underline;
}

.gallery {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.gallery-row {
  display: table-row;
}

.gallery-item {
  display: table-cell;
  padding: 10px;
  border: 1px solid #ccc;
  vertical-align: top;
  text-align: center;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  border: 1px solid #000;
}

.caption {
  display: none;
  margin-top: 8px;
  font-size: 14px;
}

.gallery-item:hover .caption {
  display: block;
}

a {
  color: #0000EE;
  text-decoration: underline;
}
