*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.attribution {
font-size: 11px; 
text-align: center; 
margin-bottom: 8px;
}
.attribution a { 
color: hsl(228, 45%, 44%);
}
body{
   background-color: hsl(224, 100%, 94%);
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding:4rem;

}
.container img{
width:200px;
text-align: center;
}
.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    box-shadow: 1px 2px 12px 2px rgb(219, 218, 218);
    align-items: center;  
    width: 14rem;
    padding: 12px 30px 32px;
    text-align: center;
    border-radius: 1ch;
    background-color: rgb(255, 255, 255);
    font-family: 'Rubik', sans-serif;
}
.card h3{
    font-size: small;
    font-weight: bolder;
    color:rgba(4, 4, 110,0.8);
}
.card p{
    font-size: x-small;
    color: grey;
}
.card img{
    border-radius: 1ch;
}
