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

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

body {
    background: hsl(212, 45%, 89%);
}
.container{
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    
}
.card {
    background: white;
    width: 320px;
    height: 500px;
    margin-top: 10px;
    border-radius: 15px;
}

.image {
    margin: 15px;
    width: 290px;
    height: 290px;
    border-radius: 15px;

}

.card h1 {
    font-family: Outfit, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 15px;
}

.card p {
    color: hsl(220, 15%, 55%);
    font-family: 'Outfit', cursive;
    font-size: 14px;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 11px;
    text-align: center;
    color: hsl(228, 45%, 44%);
}

