@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 100%;
}

body {
  height: 100%;
  background: url(images/bg-pattern-top.svg) right 50vw bottom 40vh no-repeat, url(images/bg-pattern-bottom.svg) 50vw 50vh no-repeat;
  background-color: hsl(185deg, 75%, 39%);
}

.background {
  height: 97%;
  display: flex;
}

.card-body {
  display: grid;
  margin: auto;
  width: 25%;
  height: 48%;
  background-color: white;
  border-radius: 14px;
  grid-auto-rows: 38% 0% 40% 22%;
}

.card-top {
  background: url(images/bg-pattern-card.svg);
  border-radius: 14px 14px 0 0;
}

.img-container {
  justify-self: center;
  position: relative;
  z-index: 2;
  width: calc(96px + 1.2vw);
  height: calc(96px + 1.2vw);
  bottom: 4em;
  border-radius: 50%;
  border: 5px solid white;
  background: url(images/image-victor.jpg);
  background-size: cover;
  background-position: center;
}
.img-container > * {
  border-radius: 25px;
}

.card-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid hsl(0deg, 0%, 59%);
  gap: 3%;
}

.text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 15%;
  gap: 15%;
  margin-top: 15%;
}
.text-container > p {
  color: hsl(227deg, 10%, 46%);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.3em;
}
.text-container .city-name {
  font-size: 0.8em;
  color: hsl(227deg, 10%, 46%);
}
.text-container .person-name {
  color: black;
  font-weight: 700;
}

.card-bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.stats-container {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: -13px;
}
.stats-container > p {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
}
.stats-container > p > span {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 400;
  color: hsl(227deg, 10%, 46%);
  font-size: 0.7em;
  letter-spacing: 0.2em;
}

footer {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
footer .attribution {
  text-align: center;
  font-size: 1.3em;
}
footer .attribution a {
  color: hsl(228deg, 45%, 44%);
}

@media only screen and (max-width: 550px) {
  .card-body {
    width: 85vw;
    height: 60%;
  }

  .attribution {
    font-size: 1em;
    text-align: center;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 551px) {
  .card-body {
    width: 55%;
  }
}/*# sourceMappingURL=style.css.map */