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

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

main {
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at top, #222, #000);
  display: flex;
  justify-content: center;
  align-items: center;
}
main .card {
  position: relative;
  width: 300px;
  background-color: white;
  border-radius: 0.7rem;
  padding: 2rem;
}
main .card div {
  position: relative;
  overflow: hidden;
}
main .card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
}
main .card i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 6rem;
  transform: translate(-50%, -50%) scale(0) rotate(-90deg);
  background-image: url(https://preview.colorkit.co/gradient/f9ce34-ee2a7b-6228d7.png?size=wallpaper);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  transition: all ease 0.3s;
  color: transparent;
  opacity: 0;
}
main .card h2 {
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 1.8rem;
}/*# sourceMappingURL=style.css.map */