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

:root{
    --color-white: hsl(0, 0%, 100%);
    --color-light-grey: hsl(212, 45%, 89%);
    --color-grayish-blue: hsl(220, 15%, 55%);
    --color-dark-blue: hsl(218, 44%, 22%);
    --weight-400: (400);
    --weight-700: (700);
}
*{
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--color-light-grey);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 96vh;
    margin: 1.25rem;
}
.container{
    background-color: var(--color-white);
    padding: .75rem;
    border-radius: 1rem;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .1);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}
.container img{
    border-radius: 1rem;
    margin-bottom: 1rem;
    max-width: 97.5%;
}  
.container h1{
    color: var(--color-dark-blue);
    text-align: center;
    padding-top: .25rem;
    font-size: 22px;
}
.container p{
    color: var(--color-grayish-blue);
    text-align: center;
    padding-top: 1rem;
    padding-left: .5rem;
    padding-right: .5rem;
    padding-bottom: 1.5rem;
    font-weight: var(--weight-400);
    font-size: 15px;
}



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

@media (min-width: 500px){
    .container{
        width: 400px;
    }
}