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

body {
  font-family: 'Kumbh Sans', sans-serif;
  background-color: hsl(185, 75%, 39%);
  background-image: url('../images/bg-pattern-top.svg'), url('../images/bg-pattern-bottom.svg');
  background-position: top -400px left -340px, bottom -544px right -300px;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  width: 350px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}


.top-bg {
  background-image: url('../images/bg-pattern-card.svg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 140px;
  width: 100%;
}


.avatar {
  width: 100px;
  border: 5px solid white;
  border-radius: 50%;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}


.info {
  margin-top: 60px;
  padding: 20px;
}

.info h1 {
  font-size: 18px;
  color: hsl(229, 23%, 23%);
  font-weight: 700;
}

.info h1 span {
  color: hsl(227, 10%, 46%);
  font-weight: 400;
  margin-left: 8px;
}

.info p {
  font-size: 14px;
  color: hsl(227, 10%, 46%);
  margin-top: 10px;
}


.stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid hsl(0, 0%, 90%);
  padding: 20px 0;
}

.stat h2 {
  font-size: 18px;
  font-weight: 700;
  color: hsl(229, 23%, 23%);
}

.stat span {
  font-size: 12px;
  color: hsl(227, 10%, 46%);
  letter-spacing: 1px;
  margin-top: 4px;
}
