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

body {
  width: 100%;
  height: 100vh;
  background-color: hsl(185, 75%, 39%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 650px;
  height: 500px;
  rotate: 180deg;
  background: url("../images/bg-pattern-top.svg") no-repeat;
}
body::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 700px;
  height: 450px;
  background: url("../images/bg-pattern-bottom.svg") no-repeat;
}

main {
  width: 350px;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  background-color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  background: url("../images/bg-pattern-card.svg") no-repeat;
  width: 100%;
  height: 140px;
  position: relative;
}
header::before {
  content: "";
  position: absolute;
  background: url("../images/image-victor.jpg") no-repeat;
  background-size: cover;
  border-radius: 100%;
  border: 5px solid white;
  width: 80px;
  height: 80px;
  top: 100%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.profile-info {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}
.profile-info h1 {
  color: hsl(229, 23%, 23%);
  font-size: 20px;
  font-weight: 700;
}
.profile-info h1 span {
  color: hsl(0, 0%, 59%);
  font-weight: thin;
}
.profile-info p {
  margin-top: 10px;
  color: hsl(0, 0%, 59%);
}
.profile-info::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: hsl(0, 0%, 59%);
  margin-top: 30px;
}

footer {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: "Kumbh Sans", serif;
  text-align: center;
}
footer .stat-number {
  font-size: 20px;
  color: hsl(229, 23%, 23%);
  font-weight: bold;
}
footer .stat-label {
  font-size: 12px;
  color: hsl(0, 0%, 59%);
  font-weight: 700;
  letter-spacing: 1.2px;
}

/*# sourceMappingURL=style.css.map */
