@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@500;700&family=Montserrat:wght@500;700&display=swap');

body {
    background-color: hsl(185, 75%, 39%);
    font-family: 'Kumbh Sans';
    background-image: url(images/bg-pattern-top.svg), url(images/bg-pattern-bottom.svg);
    background-position: right 50vw bottom 50vh, left 50vw top 50vh;
    background-repeat: no-repeat, no-repeat;
}

main {
    width: 325px;
    height: 370px;
    background-color: white;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#bg {
    width: 325px;
    height: 140px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.info-wrapper {
    position: relative;
    top: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    border-radius: 100%;
    border: 6px solid white;
}

.stats {
    display: flex;
    border-top: 1px solid hsla(0, 0%, 59%, 0.26);
    width: 325px;
    justify-content: space-evenly;
    text-align: center;
    padding-top: 15px;
    transform: translateY(15px);
}

.main-info {
    display: flex;
}

.info {
    display: flex;
    flex-direction: column;
    text-align: center;
    transform: translateY(-8px);
}

.info h1 {
    color: hsl(229, 23%, 23%);
    font-weight: 700;
    font-size: 18px;
}
.info h3 {
    color: hsl(0, 0%, 59%);
    font-size: 16px;
    font-weight: 500;
    padding: 1.2rem .7rem;
    margin: 0;
}
.info h2 {
    color: hsla(229, 23%, 23%, 0.555);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    transform: translateY(-10px);
}

.followers h3, .likes h3, .photos h3 {
    color: hsl(229, 23%, 23%);
    font-weight: 700;
    font-size: 18px;
    margin:0;
}
.followers p, .likes p, .photos p {
    color: hsl(0, 0%, 59%);
    font-size: 11px;
    margin: 0;
}