*{
  margin: 0;
  padding: 0;
}
html,body{
  height: 100%;
  width: 100%;
  font-family: 'Trebuchet MS';
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(100, 237, 196);
}
#container{
  height: 400px;
  width: 350px;
  background-color: red;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
#container img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#container i{
  color: white;
  font-size: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform ease 0.4s;
}