* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}

body {
  background-color: hsl(185, 75%, 39%);
  position: relative;
  overflow: hidden;
  width: 100%;
  font-size: 18px;
  font-family: "Kumbh Sans", sans-serif;
}

.pattern-top {
  position: absolute;
  top: -500px;
  right: 50%;
  z-index: -1;
}
.pattern-bottom {
  width: 50%;
  overflow: hidden;
  position: absolute;
  bottom: -600px;
  left: 50%;
  z-index: -1;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.card {
  background-image: url("images/bg-pattern-card.svg");
  width: 350px;
  height: 370px;
  border-radius: 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card-info {
  background: white;
  margin-top: 140px;
  height: 100%;
}
.card img {
  border: 4px solid white;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  left: 35%;
}
.card-name {
  padding: 70px 0 10px;
  font-weight: 700;
}
hr {
  border: none;
  height: 1px;
  background-color: hsl(0, 0%, 59%);
  opacity: 0.3;
}
span {
  color: hsl(0, 0%, 59%);
}
.card-location {
  color: hsl(0, 0%, 59%);
  font-size: 14px;
}
.card hr {
  margin: 30px 0;
}
.card-socials ul {
  display: flex;
  justify-content: space-evenly;
}
.social-count {
  font-weight: 700;
}
.social-category {
  color: hsl(0, 0%, 59%);
  font-size: 12px;
  padding-top: 5px;
}
