@import url(https://fonts.google.com/specimen/Outfit);

:root{
    --White: hsl(0, 0%, 100%);
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);
}


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: arial, sans-serif;
    background-color: var(--Slate-900 hsl(218, 44%, 22%));
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100vh;
}

.card {
    background-color: #ffffff;    
    border-radius: 25px;
    text-align: center;
    padding: 20px;
    width: 300px;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.card img{
    width: 100%;
    border-radius: 10px;
}


.card h1 { 
    font-size: 20px;
    margin: 20px 0 10px;

}


.card p {
    font-size: 15px;
}

.attribution { 
    font-size: 11px; text-align: center; 
}
.attribution a {
     color: hsl(228, 45%, 44%);
}