html, body {
  margin: 0;
  height: 100%;
  background-image: url(images/tile.jpg);
  background-repeat: repeat;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  color: white;
  text-align: center;
}

.text-centered {
  font-family: "Geo", sans-serif;
  font-size: 40px;
  text-shadow: 2px 2px 4px #32b8ed;
  color: #ffffff;
}

.text-centered-small {
  font-family: "Geo", sans-serif;
  font-size: 16px;
  text-shadow: 2px 2px 4px #32b8ed;
  color: #ffffff;
}

.blog-links {
  font-family: "Geo", sans-serif;
  font-size: 16px;
  text-shadow: 2px 2px 4px #32b8ed;
}

a {
  color: #32b8ed;
}

a:hover {
  text-decoration: underline;
  
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.gallery img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 200px;          /* thumbnail size */
  height: auto;
  border: 1px dotted white;  /* your 1px outline */
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.8);
}