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

:root{
    --White: hsl(0, 0%, 100%);
    --Light-gray: hsl(212, 45%, 89%);
    --Grayish-blue: hsl(220, 15%, 55%);
    --Dark-blue: hsl(218, 44%, 22%);
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: Outfit, sans-serif;
    background-color: var(--Light-gray);
    font-size: 15px;
}
.container{
    background-color: var(--White);
    box-shadow: 2px 5px 20px grey;
    border-radius: 18px;
    margin: 82px auto;
    height: 500px;
    width: 322px;
}
.container__image{
    border-radius: 10px;
    width: 290px;
    margin: 17px;
}
.container__title{
    padding: 0 25px 15px 25px;
    color: var(--Dark-blue);
    text-align: center;
}
.container p{
    color: var(--Grayish-blue);
    margin: 5px 40px 10px 40px;
    text-align: center;
    font-weight: 400;
}
.attribution {
    text-align: center;
    margin: 50px auto;
    font-size: 16px;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}