body {
  background: rgb(191, 188, 186);
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  perspective: 500px;
  perspective-origin: center;
  cursor: pointer;
  font-size: 2.75vh;
}

.card {
  background-color: white;
  width: 15em;
  height: 27em;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: 3s all ease-out;
  box-shadow: 0 3em 3em rgba(0, 0, 0, 0.25);
}

.card .decor {
  content: "";
  width: 15em;
  height: 23em;
  align-self: flex-start;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  overflow: hidden;
  position: relative;
  transition: 2s all ease-out;
}

.card .decor * {
  display: block;
  min-width: 15em;
  min-height: 15em;
  border-radius: 15em;
  position: absolute;
  margin-left: -25%;
  margin-top: 50%;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 100%);
  opacity: 0.5;
  mix-blend-mode: overlay;
  transition: 24s all ease-in-out;
}

.card h1 {
  font-size: 0.85em;
  font-family: monospace;
  line-height: 133%;
  font-weight: normal;
  align-self: center;
  margin-top: 0.66em;
  display: flex;
  width: 15em;
}

#contact {
  position: absolute;
  bottom: 1em;
  z-index: -1;
}

#contact a {
  color: #aaa;
  font-size: 1em;
  font-weight: bold;
  font-family: serif;
  padding: 1em;
  transition: 0.3s all;
}

#contact a:hover {
  color: #3030ff;
}
