*
{
    box-sizing: border-box;
    margin: 0;
}

body
{
    width: 100vw;
    height: 100vh;
    background-color: #d6e2f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container
{
    width: 230px;
    height: 400px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 15px;
    text-align: center;
    padding: 15px;
    font-family: 'Outfit', sans-serif;
}

img
{
    width: 200px;
    height: 200px;
    border-radius: 15px;
}

.container h3
{
    font-weight: 700;
}

.container p
{
    font-weight: 400;
}

.attribution 
{ 
    font-size: 11px; 
    text-align: center;
    position: absolute; 
    bottom: 50px;
}

.attribution a 
{ 
    color: hsl(228, 45%, 44%); 
}