body{
  margin-top: 10vh;
  text-align: center;
  font-family: sans-serif;
  background-color: #f8f9fa;
}

.dogLinks {
  gap: 20px;
  margin: auto;
  padding: 10px;
  display: flex;
  width: fit-content;
  border-radius: 10px;
  margin-bottom: 20px;
  justify-content: center;
  background-color: #afafaf;
}

#dogGallery {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#dogGallery img {
  height: auto;
  width: 270px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.imageCard {
  margin: 10px;
  padding: 10px;
  width: 300px;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dogLinks a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.dogLinks a:hover {
  color: #fafafa;
}

#homeImage {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}