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

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

:root {
    --white: hsl(0, 0%, 100%);
    --light-blue: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

body {
   font-family: "Outfit", sans-serif;
   background-color: var(--light-blue); 
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: calc(100vh - 1px);
   font-size: 15px;
   margin: 1.25rem ;
}


p {
    width: 100%;
    color: var(--grayish-blue);
    margin-bottom: 10px;
    margin: 10 10;
}

.card h1 {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card img {
    border-radius: 0.625rem;
    max-width: 100%;
    margin-bottom: 1rem;
}

.card {    
    background: var(--white);
    padding: 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
    text-align: center;

    margin: 0 auto;
    width: 250px;
    
    justify-content: center;
    align-items: center;
}

.attribution { 
    font-size: 12px; 
    text-align: center; 
    margin-top: 1.5rem;
}

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



