@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background-color: hsl(185, 75%, 39%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bg-pattern-top.svg"),
    url("../img/bg-pattern-bottom.svg");
  background-repeat: no-repeat;
  background-position: right 50vw bottom 45vh, left 50vw top 45vh;
  background-size: auto;
}
.bg-pattern-top {
  position: absolute;
  top: -60%;
  left: -10%;
  z-index: 1;
}
.bg-pattern-bottom {
  position: absolute;
  bottom: -60%;
  right: -10%;
  z-index: 1;
}
main {
  background-color: hsl(225, 10%, 92%);
  max-width: 450px;
  border-radius: 15px;
  z-index: 2;
}
main .img-contaner img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.photo-of-victor {
  display: flex;
  justify-content: center;
  margin-bottom: -55px;
}
.photo-of-victor img {
  display: block;
  background-color: hsl(225, 10%, 92%);
  border-radius: 50%;
  padding: 10px;
  position: relative;
  top: -69px;
}
.name,
.location {
  text-align: center;
}
.location {
  margin-bottom: 20px;
}
.statistics {
  display: flex;
  justify-content: space-around;
  margin: 20px;
}
.statistics div {
  text-align: center;
}
.statistics p {
  margin-bottom: 5px;
  letter-spacing: 1.5px;
}
hr {
  border: none;
  border-bottom: 0.1px solid black;
}
p,
span {
  color: hsl(227, 10%, 46%);
}
span {
  font-weight: 400;
}

