
:root{
--White: hsl(0, 0%, 100%);
--Slate300: hsl(212, 45%, 89%);
--Slate500: hsl(216, 15%, 48%);
--Slate900: hsl(218, 44%, 22%);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
}

body{
    
    display: flex;
    flex-direction: column; 
    align-items: center;  
    justify-content: center;
    background-color: var(--Slate300);   
    text-align: center;
    min-height: 100vh;
}


.card {
    width: 320px;
    overflow: hidden;
    background-color: var(--White);
    border-radius: 20px;
    padding: 16px 16px 40px 16px;
}

.cardImage {
    border-radius: 10px;    
    max-width: 100%;
    
}

.cardTitle{
    padding-top: 20px;
    color: var(--Slate900);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.3px;
}


.cardDescription{
    font-size: 15px;
    color: var(--Slate500);
    padding: 20px 20px 0 20px; 
    letter-spacing: 0.3px;
    font-weight: 400;
}

  .attribution { 
    font-size: 11px; 
    text-align: center; 
  padding-top: 20px;
}

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