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

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #D5E1EF;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card{
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 25px 25px 0px #0000000C;
    width: 320px;
    padding: 16px;
    
}

.card img{
    border-radius: 10px;
    margin-bottom: 24px;
    align-items: center;
    width: 100%;
}

.card h1{
    font-size: 22px;
    color: #1F314F;
    text-align: center;
    margin-bottom: 16px;

}

.card p{
    font-size: 16.5px;
    text-align: center;
    color: #68778D;
    margin-bottom: 20px;
}

.attribution { 
    margin-top: 20px;
    font-size: 11px; text-align: center; 
}
    .attribution a { color: hsl(228, 45%, 44%); }