@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

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


*{
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    display: flex;
    background-color:  hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100vh;
    /* margin: 1.25rem; */
}

.container{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
  /* background-color: pink; */
    /* width: 100%;
    height: 100%; */
}

.card{
    display: flex;
    padding: 15px;
    border-radius: 20px;
    margin: auto ;
    margin-bottom: 0;
/*    background-color: orange;*/
   flex-direction: column;
   width: 300px;
}

.card img{
    border-radius: 20px;
    align-items: center;
    width: 100%;
}


.card-title{
    color: hsl(218, 44%, 22%);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;


}

.card-text{
    color: hsl(220, 15%, 55%);
    font-size: 15px;
    text-align: center;

}

.attribution{
    text-align: center;
}

.attribution a{
    color: hsl(218, 44%, 22%);
}

@media (max-width:375px) {
    .card-title{
        font-size: 1rem;
    }

    .card-text{
        font-size: 13px;
    }
}
