* {
  box-sizing: border-box;
}

body, html {
  padding: 0;
  margin: 0;
}

#app {
  width: 100vw;
  height: 100svh;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img {
  width: 300px;
}

.card {
  width: 350px;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  margin-top: 100px;
  padding: 0 20px 20px 20px;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.card img {
  transform: translateY(-50px);
}/*# sourceMappingURL=style.css.map */