@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

* {
  /* Defaults */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 18px;

  /* Font */
  --font-family-kumbh: 'Kumbh Sans';

  /* Colors Primary */
  --dark-cyan: hsl(185, 75%, 39%);
  --very-dark-desaturated-blue: hsl(229, 23%, 23%);
  --dark-grayish-blue: hsl(227, 10%, 46%);

  /* Colors Neutral */
  --dark-gray: hsl(0, 0%, 59%);
}

.attribution {
  font-size: 11px;
  text-align: center;
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

html,
body,
main {
  height: 100%;
}
body {
  font-family: var(--font-family-kumbh);
  color: var(--very-dark-desaturated-blue);
  background-color: var(--dark-cyan);
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.background-top {
  position: absolute;
  top: -200px;
  left: -100px;
  z-index: -2;
}
.background-bottom {
  position: absolute;
  bottom: -200px;
  right: -100px;
  z-index: -1;
}

.card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.25);
}

.card__image {
  width: 100%;
}

.card__avatar {
  border-radius: 100%;
  border: 5px solid white;
  transform: translateY(-50%);
}

.card__personal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: -30px;
}

.card__age,
.card__location {
  color: var(--dark-grayish-blue);
}

.card__location {
  margin: 10px auto 20px auto;
}

hr {
  opacity: 0.25;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 20px;
}

.stat h1 {
  font-size: 1.3rem;
}

.stat h2 {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dark-grayish-blue);
}

@media (max-width: 1000px) {
  .background-top {
    left: -600px;
  }
  .background-bottom {
    right: -600px;
  }
}
