/* Default stylesheet and tools */
body,
html {
  background: rgb(245, 245, 245);
  padding: 0;
  margin: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
}

#container {
  width: 100%;
  height: 100vh;
}

#container-image {
  border-radius: 10px;
  transition: all 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#container-image > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

img {
  text-align: center;
  height: 20vh;
  width: 20vh;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
  transform-origin: center center;
  opacity: 0;
}
