:root {
  --aqua: hsl(185, 75%, 39%);
  --navy: hsl(229, 23%, 23%);
  --gray: hsl(227, 10%, 46%);
  --light-gray: hsl(225, 10%, 80%);
}

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

body {
  background-color: var(--aqua);
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: "kumbh Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.top-shape {
  position: absolute;
  bottom: 50%;
  right: 50%;
  width: 1100px;
  height: 1100px;
  background-image: url(../images/bg-pattern-top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.bottom-shape {
  position: absolute;
  top: 55%;
  left: 40%;
  width: 1100px;
  height: 1100px;
  background-image: url(../images/bg-pattern-bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.container {
  background-color: #fff;
  border-radius: 20px;
  min-width: 320px;
  /* padding: 20px; */
  z-index: 1;
}

.aqua-style {
  background-image: url(../images/bg-pattern-card.svg);
  width: 100%;
  height: 200px;
  border-radius: 20px 20px 0 0;
}

.profile-info {
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.profile-info img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 10px solid white;
  position: absolute;
  bottom: 60%;
}

.profile-info div {
  margin: 10px;
  margin-top: 5rem;
  font-size: 25px;
}

.profile-info p {
  margin-bottom: 2rem;
}

.stats ul {
  list-style: none;
  margin: 1rem 2rem 0.5rem 2rem;
  font-size: 16px;
}

.stats li {
  display: inline-block;
  padding: 15px 2rem;
  text-align: center;
}

.stats li strong {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 5px;
}

p,
span {
  color: var(--gray);
}

strong {
  color: var(--navy);
}

@media (max-width: 480px) {
  html,
  body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .top-shape {
    width: 800px;
    height: 800px;
  }
  .bottom-shape {
    width: 800px;
    height: 800px;
  }
  .stats ul {
    margin: 1rem 1rem 0.5rem 1rem;
  }
  .stats li {
    padding: 15px 1rem;
  }
}
