@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');



:root{
    --White: hsl(0, 0%, 100%) ;
    --light-gray: hsl(212, 45%, 89%) ;
    --grayish-blue: hsl(216, 15%, 48%) ;
    --dark-blue: hsl(218, 44%, 22%);
}
img{
    max-width: 100%;
    
}
body{
    font-family: outfit, sans-serif;
    font-size:15px;   
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 1px);
}

.container{
    background-color: var(--White);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
        margin-bottom: 32px;

}
.container img{
    border-radius: 10px;
        margin-bottom: 16px;
}
.container h1{
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 16px;
    
}
.container p{
    color: var(--grayish-blue);
    text-align: center;
}
.attribution {
    font-size: 12px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
@media (min-width: 500px) {
    
    .container{
        width: 400px;
    }
}