body{
    background-color: hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100hv;
}

.container{
    display: flex;
    height: 400px;
    width: 230px;
    background-color: white;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 12px;
    margin-top: 120px;
    margin-bottom: 40px;
    font-size: 15px;
    font-family: 'outfit';
    padding-bottom: 22px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.img img{
    border-radius: 10px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.5);
}

.attribution{
    font-size: 15px;
    font-family: 'outfit';
}

.container h4{
    color: hsl(218, 44%, 22%);
    font-weight: 900;
}

.container p{
    color: hsl(216, 15%, 48%);
    font-weight: 400;
}

@media(width:400px){
    .container{
        width: 220px;
        background-color: hsl(218, 44%, 22%);
        margin-top: 50px
         
    }

    .container h4{
        color: hsl(212, 45%, 89%);
    }

    .attribution{
        margin-left: 30px;
        margin-bottom: 5px;
    }
}



