@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
body {
    font-family: "Kumbh Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    height: 100vh;
    padding: 0px;
    margin: 0px;
    background-color: hsl(185, 75%, 39%);
    background-image: url("./images/bg-pattern-top.svg"),
        url("images/bg-pattern-bottom.svg");
    background-position: right 45vw bottom 45vh, 50vw 45vh;
    background-repeat: no-repeat;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 300px;
    border-radius: 0.5em 0.5em 0.5em 0.5em;
    box-shadow: 0 25px 45px -15px hsl(227, 10%, 46%);
}

.profile {
    border-radius: 50%;
    width: 30%;
    border: 4px solid white;
    margin-top: -16%;
}

h1 {
    font-size: 0.9em;
}

.stats {
    display: flex;
    border-top: 1px solid hsl(0, 0%, 90%);
    padding: 15px;
    justify-content: space-around;
    width: 90%;
}

main > img {
    width: 100%;
    border-radius: 0.5em 0.5em 0 0;
}

.container > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: -5px;
}

.age {
    color: hsl(227, 10%, 46%);
    font-size: 0.8em;
}

.city {
    margin-top: 0px;
    color: hsl(227, 10%, 46%);
    font-size: 0.6em;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    color: hsl(227, 10%, 46%);
    font-size: 0.5em;
    gap: 0.3em;
    align-items: center;
    letter-spacing: 0.1em;
}

.stat > span {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: -0.15px;
    color: hsl(229, 23%, 23%);
    line-height: 0.8em;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

footer {
    position: absolute;
    bottom: 0;
    padding-bottom: 10px;
}

.top,
.bottom {
    overflow: hidden;
    position: absolute;
    z-index: -1;
    width: 1000px;
}

.top {
    top: -500px;
    left: -100px;
}

.bottom {
    bottom: -500px;
    right: -100px;
}

.content {
    display: flex;
}
