@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

/*font-family: 'Kumbh Sans', sans-serif;*/

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

body {
    background-color: hsl(185, 75%, 39%);
    height: 100%;
    font-family: 'Kumbh Sans', sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden; 
}

.top {
    position: absolute;
    top: -100%;
    right: 50%;
}

.bottom {
    position: absolute;
    bottom: -100%;
    left: 50%;
}

.content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.card {
    background-color: white;
    background-image: url(images/bg-pattern-card.svg);
    background-repeat: no-repeat;
    width: 20.313rem;
    height: 23.438rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 1rem;
}

.profile-img {
    margin-top: 5.5rem;
}

.profile-img img {
    border-radius: 50%;
    border: 5px solid white;
}

h2 {
    color: hsl(229, 23%, 23%);
    font-size: 1rem;
}

.name {
    margin-bottom: 0rem;
    margin-top: 0.5rem;
}

.age {
    color: hsl(0, 0%, 59%);
    font-weight: 400;
    margin-left: 0.3rem;
}

.city {
    color: hsl(0, 0%, 59%);
    font-weight: 400;
    font-size: 0.8rem;
    margin-bottom: 3rem;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid #e9e9e9;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.footer p {
    color: hsl(0, 0%, 59%);
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
    margin-top: 0.4rem;
}



