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

:root{
    --white: hsl(0, 0%, 100%);
    --lightgray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
    --font-outfit: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-outfit);
    font-size: 15px;
}

.container {
    background-color: var(--lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.card{
    width: 320px;
    height: auto;
    background-color: var(--white);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
}
.card img{
    width: 100%;
    border-radius: 10px;
}

.card__description{
    margin: 1.25rem;
    padding-bottom: 0.3rem;
}
.card__title{
    font-weight: 700;
    font-size: 1.475rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.card__text{
    font-weight: 400;
    color: var(--grayish-blue);
}

.attribution {
    text-align: center;
    position: fixed;
    bottom: 0;
    height: 2.5rem;
    width: 100%;
}

.attribution, a {
    font-size: 14px;
    color: var(--dark-blue);
}