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

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

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

  /* ? FONTS */
  --ff-kumbh-sans: "Kumbh Sans", sans-serif;
}

/*********************************************************/
/* ! GLOBAL RESET */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ! END OF GLOBAL RESET */
/**************************************************************/




html {
  font-size: 62.5%;
  font-family: var(--ff-kumbh-sans);
}

body {
  background-color: var(--dark-cyan);
  background-image: url(./images/bg-pattern-top.svg);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: -50vw -25vh, 50vw 50vh;
  background-size: 100%, 150%;
}

.card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  width: 335px;
  height: 380px;
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.avatar > img {
  border-radius: 50%;
  border: 5px solid white;
  position: absolute;
  top: 80px;
  left: 115px;
}

.person {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px
}

.name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--very-dark-desaturated-blue);
}

.name > span {
  color: var(--dark-gray);
  font-weight: 400
}

.country {
  font-size: 1.3rem;
  color: var(--dark-gray);
}

.line {
  height: 0.4px;
  width: 100%;
  background-color: var(--dark-gray);
  opacity: 0.4;
  margin-top: 20px;
}


.statistics {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
  font-size: 1.8rem;
  color: var(--very-dark-desaturated-blue);
  font-weight: 700;
}

.statistics span {
  display: block;
  font-size: 1rem;
  color: var(--dark-gray);
  letter-spacing: 0.1rem;
}


@media (min-width: 900px) {




}
