html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  background: rgb(243, 238, 255);
  background: radial-gradient(circle, rgba(243, 238, 255, 1) 0%, rgba(237, 247, 253, 1) 79%);
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

body a {
  text-decoration: none;
}

header {
  flex-shrink: 0;
}

section {
  flex: 1;
}

footer {
  flex-shrink: 0;
  background-color: #050132;
}

.footerColumn a {
  color: lightgray;
  text-decoration: none;
}

.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-container img {
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.2);
}

.image-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-description {
  opacity: 1;
}

