body {
    margin: 0 auto;
    position: relative;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 18px;
    background-color:  hsl(185, 75%, 39%);
}

article {
    position: absolute;
    text-align: center;
    top: calc(50% - 195px);
    left: calc(50% - 175px);
    background-color: white;
    width: 350px;
    border-radius: 15px;
    z-index: 0;
}

.container {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 10fr 1fr 10fr;
    min-width: 100wh;
    min-height: 100vh;
}

.item1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./images/bg-pattern-top.svg");
    background-repeat: no-repeat;
    background-size:auto;
    background-position: right bottom;
}

.item2 {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.item3 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.item4 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    background-image: url("./images/bg-pattern-bottom.svg");
    background-repeat: no-repeat;
    background-size:auto;
    background-position: left top;
}

header {
    height: 140px;
    position: relative;
    background-image: url("./images/bg-pattern-card.svg");
    border-radius: 15px 15px 0 0;
}

header img {
    position: absolute;
    bottom: -55px;
    left: 120px;
    border: 5px solid white;
    border-radius: 50%;
}

.title {
    margin-top: 75px;
    margin-bottom: 8px;
    font-weight:700;
    
    color:hsl(229, 23%, 23%);
}

.title span {
    font-weight: 400;
    color:hsl(0, 0%, 59%);
    padding-left: 10px;
}

.subtitle {
    font-size: 14px;
    font-weight: 400;
    color:hsl(0, 0%, 59%);
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 25px;
    border-bottom: 1px solid #E8E8E8;
}

ul {
    padding-left: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
}

li {
    display: inline;
    text-decoration: none;
}

.data-number {
    font-weight: 700;
    margin-bottom: 0px;
    
}

.data-text {
    color:hsl(0, 0%, 59%);
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.upper-back-image {
    position: absolute;
    top: -65%;
    left: -20%;
    width: 100%;
    height: 100%;
    background-image: url(./images/bg-pattern-top.svg);
    background-repeat: no-repeat;
}

