@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
   --Blue600: hsl(185, 75%, 39%);/*dark*/
   --Navy950: hsl(229, 23%, 23%);/*very*/
   --Gray500: hsl(227, 10%, 46%);/*darkgrayishblue*/
   --Gray100: hsl(225, 10%, 92%);/*darkgray*/
}
body{
    margin: 0;
    padding: 0;
  
    background-color: var(--Blue600);
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    background-image: url(images/bg-pattern-top.svg), url(images/bg-pattern-bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: right 51vh bottom 20vh, left 45vw top 50vh;
}
.card-container{
    
    margin: 170px auto 50px;
    width: 330px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
}
.bubbles{
    background: url(images/bg-pattern-card.svg);
    height: 140px;
}
.photo{
    position: absolute;
    top: 257px;
    left: 40%;
    border: 5px solid white;
    border-radius: 50%;
    overflow: hidden;
    height: 96px;
}
.personal-data-container{
    background-color: white;
    height: 150px;
    padding: 75px;
    box-sizing: border-box;
    text-align: center;
}
.name{
    font-weight: 700;
    color: var(--Navy950);
}
.age, .city{
    color: var(--Gray500);
}
.city{
    margin-top: 10px;
    font-size: 0.8em;
}
.start-container{
    background-color: white;
    border-top: 1px solid var(--Gray100);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    
}
.statistics{
    text-align: center;
}
.quantity{
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--Navi950);
}
.units{
    font-size: 0.6em;
    color: var(--Gray500);
    letter-spacing: 2px;
}

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

@media only screen and (min-width:800px){
    .card-container{
        width: 350px;
    }
}