* {

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


:root {
    --Dark-cyan: hsl(185, 75%, 39%);
    --Very-dark-desaturated-blue: hsl(229, 23%, 23%);
    --Dark-grayish-blue: hsl(227, 10%, 46%);

    --Dark-gray: hsl(0, 0%, 59%);
}

.sr-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
	-webkit-clip-path: inset(50%) !important;
		clip-path: inset(50%) !important;  /* 2 */
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;

}

html {
    overflow-x: hidden;
}

.body {
    min-height: 100vh;    
    background-color: var(--Dark-cyan);
    background-image: url(../images/bg-pattern-top.svg),url(../images/bg-pattern-bottom.svg);
    background-repeat: no-repeat;
    background-position: bottom 50vh right 50vw, top 50vh left 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Very-dark-desaturated-blue);
    overflow-x: hidden;
    
}

.card {

    font-family: 'Kumbh Sans', sans-serif;
    background-color: white;
    text-align: center;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin: 15px 0;
}

.img-holder {

    margin: -50px 0 20px 0; 

}

.user-img {

    border-radius: 50%;
    border: white 5px solid;
}

.location {
    
    margin: 8px 0 25px 0;
}

.age {
    margin-left: 6px;
    
}

.location {
    font-size: 16px;
}

.stat-category {

    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.age,
.user-name,
.stat-number {
 
    font-size: 18px;
    font-weight: 700;
}

.age,
.location,
.stat-category {

    font-weight: 400;
    color: var(--Dark-gray);
}

.card-footer {
    border-top: hsl(0, 0%, 89%) 1px solid;
    display: flex;
    justify-content: space-evenly;
    margin: 25px 0 25px 0;
    padding-top: 25px;

}




