* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: rgb(232, 232, 247);
}

#container {
  height: 400px;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

#container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#container i {
  color: white;
  font-size: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
  opacity: 0;
}
