section {
  background-image: url(/images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the background image covers the entire container */
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

main > div {
  position: relative;
}

main > div:last-child {
  align-self: center;
}

.centered {
  position: absolute;
  bottom: 0;
  left: 63%;
  transform: translateX(-50%);
}
