html,body {
    height: 100%;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}





body {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 18px;
    color: hsl(0, 0%, 59%);
    background-color: hsl(185, 75%, 39%);
}





.wrapper {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
}





.container {
    max-width: 450px;
    min-height: 450px;
    margin: 0 auto;
    
    padding: 0px 20px;
}

@media (max-height: 600px) {
    .container {
        padding: 30px 20px 50px;
    }
}





.card {
    position: relative;
    border-radius: 20px;
    box-shadow: 1px -1px 6px #333;
    max-width: 100%;
    background-color: #fff;
}





.bg-1 {
    position: absolute;
    top: -145%;
    left: -192%;
    z-index: -1;
}





.bg-2 {
    position: absolute;
    top: 51%;
    left: 59%;
    z-index: -1;
}





.card-background {
    max-width: 100%;
    border-radius: 20px 20px 0px 0px;
}





.content {
    padding-top: 75px;
    position: relative;
}





.info {
    padding: 30px;
    display: flex;
    border-top: 1px solid hsl(0deg 13% 89%);
    justify-content: space-around;

    font-size: 25px;
    font-weight: 700;
    color: hsl(229, 23%, 23%);
}





.info p {
    text-align: center;
}

@media (max-width: 320px) {
    .info p {
        padding: 0px 5px;
    }
}





.avatar {
    margin-left: -50px;
    border-radius: 50%;
    border: 5px solid #fff;
    position: absolute;
    top: -53px;
    left: 50%;
}





.city {
    text-align: center;
    padding: 15px 0px 30px 0px;
    color: hsl(227, 10%, 46%);
}





.name {
    text-align: center;
    color: hsl(229, 23%, 23%);
}





.span {
    color: hsl(0, 0%, 59%);
    font-weight: 400;
    font-size: 18px;
}





.age {
    color: hsl(227, 10%, 46%);
    font-weight: 400;
    margin-left: 10px;
}





.attribution {
    position: absolute;
    display: flex;
    bottom: 5px;
    left: 5px;
    color: #d2cfc0;
}

@media (max-height: 600px) {
    .attribution {
        position: relative;
    }
}

@media (max-width: 477px) {
    .attribution {
        display: block;
    }
}





.link {
    text-decoration: none;
    color: #b7f81c;
    transition: all 0.2s linear;
    margin-right: 20px;
    margin-left: 10px;
}

.link:hover {
    text-decoration: underline;
}









 















































