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

body {
    height: 100vh;
    align-items: center;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

.card {  
    background: white;
    border-radius: 15px;
    padding: 20px;
    max-width: 320px;
    max-height: 500px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card .paragraph-1 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: hsl(218, 44%, 22%)
}

.card .paragraph-2 {
  font-size: 15px;
  font-weight: 400;
  color: hsl(216, 15%, 48%);
}


footer {
    margin-top: 20px;
    text-align: center;
  font-size: 11px;
}
