@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
*{
    margin: 0;
    border: 0;
    padding: 0;
    outline: 0;
    font-family: 'Outfit', sans-serif;
}

body{
    width: 100%;
    height: 100svh;
    
    background-color: hsl(212, 45%, 89%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    > .content{
        border-radius: 20px;
        width: 220px;
        padding: 10px;
        background-color: hsl(0, 0%, 100%);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        > img{
            border-radius: 10px;
            width: 100%;
        }

        > h4{
            margin-top: 20px;
            width: 90%;
            text-align: center;
            color: hsl(218, 44%, 22%);
        }

        > p{
            width: 90%;
            text-align: center;

            margin: 15px 0;

            font-weight: 100;
            font-size: .8rem;

            color: hsl(220, 15%, 55%);
        }

    }
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
    position: absolute;
    bottom: 20px;
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}