:root {
  --primary: #f07e14;
  --gray: #888888;
}

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

body {
  background-color: #c0c0c0;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Acumin Pro, acumin-pro, sans-serif;
  overflow: hidden;
}

.background {
  position: absolute;
  height: 210vh;
  filter: brightness(0) opacity(0.025);
}

.card {
  width: 510px;
  height: 330px;
  background: linear-gradient(145deg, #adadad, #cdcdcd);
  background: white;
  box-shadow: 14px 14px 50px #a3a3a3, -14px -14px 50px #dddddd;
  box-shadow: 0px 0px 50px -10px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
}
.card__name {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.card__title {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: bold;
  padding-bottom: 0.25rem;
}
.card__position {
  font-size: 1rem;
  font-weight: bold;
}
.card .wrapper {
  position: absolute;
  bottom: 3rem;
}
.card__mail {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card__phone {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.card__phone .fas {
  width: 0.75rem;
  margin-right: 0.5rem;
}
.card__photo {
  width: 155px;
  height: 155px;
  border-radius: 1rem;
  overflow: hidden;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.card__photo:hover .download {
  height: 100% !important;
}
.card__photo .download {
  height: 0%;
  color: var(--primary);
  transition: height 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: vcard-glance 0.5s 1s ease-in-out backwards;
}
.card__photo .download .fas {
  font-size: 7rem;
}
.card__logo {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  width: 50%;
}

.text-primary {
  color: var(--primary);
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  color: var(--primary);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes vcard-glance {
  from {
    height: 100%;
  }
  to {
    height: 0%;
  }
}

/*# sourceMappingURL=style.min.css.map */
