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

:root {
  --dark-cyan: hsl(185, 75%, 39%);
  --dark-sat-blue: hsl(229, 23%, 23%);
  --dark-gray-blue: hsl(227, 10%, 46%);
  --dark-gray: hsl(0, 0, 59%);
  font-size: 18px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(images/bg-pattern-top.svg), url(images/bg-pattern-bottom.svg),
    var(--dark-cyan);
  background-size: contain, contain, 100%;
  background-repeat: no-repeat;
  background-position: top -400px left -200px, bottom -400px right -200px,
    center;
  transition: 300ms;
}

@media (max-width: 600px) {
  body {
    background-position: top -200px left -300px, bottom -200px right -300px,
      center;
  }
}

.container {
  width: 95%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--dark-gray-blue);
  box-shadow: 5px 5px 10px hsla(0, 0%, 0%, 0.1);
}

.headerImg {
  width: 100%;
  border-radius: 0.75rem 0.75rem 0 0;
}

.profileImg {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  border: 0.5rem solid #fff;
  object-fit: cover;
  margin-top: -3.5rem;
  margin-bottom: 1rem;
}

.name {
  margin-bottom: 0.5rem;
}

strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-sat-blue);
}

.hr {
  height: 0.5px;
  width: 100%;
  background-color: var(--dark-gray-blue);
  margin: 1.5rem 0;
  opacity: .1;
}

.statsWrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 1.5rem;
}

.statsWrapper p {
  letter-spacing: 1px;
  font-size: 0.75rem;
}
