@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Kumbh Sans', sans-serif;
    background-color: hsl(185, 75%, 39%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

span,
p {
    color: hsl(0, 0%, 59%);
    font-weight: bold;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

.profile-card {
    /* border: 1px solid red; */
    width: 400px;
    height: 470px;
    background-color: white;
    border-radius: 20px;
}
.profile {
    border-radius: 50%;
    /* display: inline-block; */
    /* border: 1px solid black; */
    position: relative;
    bottom: 4px;
    right: 4px;

}
.pattern {
    width: 400px;
    border-radius: 20px 20px 0 0;
}

.img-div {
    border: 10px solid white;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    position: relative;
    bottom: 60px;
    left: 150px;
}

.info {
    display: flex;
    justify-content: space-around;
}
.name-info {
    text-align: center;
    margin-top: -60px;
}