.container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
  width: 50%;
}

p {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
  position: absolute;
  bottom: 0;
}
