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

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

.container {
  background-color: white;
  width: 300px;
  border-radius: 10px;
  
}

.background {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 30px;
  width: 100%;
  height: 120px;
}

.imagewrapper-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}

.avatar {
    border-radius: 50%;
    border: 5px solid white;
    width: 30%;
    height: 30%;
}

.nameage {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.age {
    color: hsl(0, 0%, 59%);
    font-weight: 500;
}

.location {
    color: hsl(0, 0%, 59%);
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

hr {
    border: none;
    background-color: hsla(0, 0%, 59%, 20%);
    height: 1px;
}

.info {
  display: flex;
  justify-content: space-around;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  box-sizing: border-box;
}

.number {
  font-size: 18px;
  font-weight: 700;
}

.type {
  font-size: 12px;
  color: hsl(0, 0%, 59%);
  font-weight: 500;
}