*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    font-family: "Kumbh Sans", sans-serif;
    background-color: hsl(185, 75%, 39%);
    display: grid;
    place-items: center;
    align-content: center;
    background-image: url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg);
    background-repeat: no-repeat;
    background-position: -300px -300px, right -300px bottom -300px;
}
.card{
    background-color: white;
    border-radius: 1em;
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    background-image: url(./images/bg-pattern-card.svg);
    background-size: cover;
    background-position: center;
    min-height: 150px;
    position: relative;
}
.card-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid hsl(225, 10%, 92%);
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5em 0 1em 0;
}
.detail {
    color: hsl(227, 10%, 46%);
    font-weight: normal;
}
h1, h2, h3, h4 {
    line-height: 1.1;
}
.card-footer {
    display: flex;
    gap: 1em;
    padding: 1.5em 0 2em 0;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid hsl(225, 10%, 92%)
}
.stats p:first-child {
    font-weight: bold;
}
.stats p:last-child {
    color: hsl(227, 10%, 46%);
    font-size: 11px;
}
.stats p {
    margin: 2px 0;
}