/* 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.1s;
  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: 10vh;
  width: 10vh;
  border-radius: 10px;
  transition: all 0.1s;
  opacity: 0.1;
}
