* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #88bdf2;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main {
  width: 350px;
  height: 400px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
body .main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .main i {
  color: #fff;
  font-size: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all ease 0.4s;
}/*# sourceMappingURL=style.css.map */