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

html,
body {
    font-family: 'Kumbh Sans', sans-serif;
    height: 100%;
}

main {
    background-color: hsl(185, 75%, 39%);
    background-image: url('./images/bg-pattern-top.svg');
    background-position: top left, bottom right;
    height: 100%;
    display: flex;
}

.card--profile {
    border-radius: 10px;
    box-shadow: 0 0px 0px #fff;
    align-items: center;
    width: 100%;
    margin: auto 20px;
}

.card--profile__header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 100px;
    background: url('./images/bg-pattern-card.svg');
}

.card--profile__body {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    position: relative;
    background: white;
}

.profile--image {
    border-radius: 50%;
    text-align: center;
    margin-top: -50px;
    border: 4px solid white;
}

.profile--details {
    margin: 20px;
}

.profile--name,
.count {
    font-size: 18px;
    font-weight: 700;
    color: hsl(229, 23%, 23%);
}

.profile--age {
    opacity: 0.5;
    font-weight: 400;
}

.profile--location {
    opacity: 0.5;
    margin: 10px;
}

.profile--social {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    padding-bottom: 20px;
}

.count--text {
    opacity: 0.5;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .card--profile {
        width: 20%;
        margin: auto;
    }
}