:root{
    /* layout */
    --mobile-width: 375px;
    --desktop-width: 1440px;
    /* colours */
    --white: hsl(0, 0%, 100%);
    --slate-300: hsl(212, 45%, 89%);
    --slate-500:hsl(216, 15%, 48%);
    --slate-900:hsl(218, 44%, 22%);
    /* font weights */
    --light-text:400;
    --bold-text:700;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    font-family: 'Outfit', sans-serif ;
    background-color: var(--slate-300);
    
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content {
    max-width: 320px;
    max-height: 499px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 25px 25px 0px rgba(0,0,0, 0.0477);
}

img {
    max-width: 288px;
    max-height: 288px;
    border-radius: 10px;
}

.content-text{
    max-width: 288px;
    /* height: 131px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.heading {
    font-size: 20px;
    font-weight: var(--bold-text);
    text-align: center;
    /* height: 52px; */
    padding-bottom: 16px;
    color: var(--slate-900);
}

.description{
    font-weight: var(--light-text);
    color: var(--slate-500);
    text-align: center;
    height: 63px;
}

.attribution { 
    font-size: 0.6875rem;
    text-align: center; 
}

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

footer {
    padding-bottom: 16px;
}