* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
.card{
    background-color: hsl(0, 0%, 100%);
    width: 300px;
    padding: 10px;
    border-radius: 15px;

}
img{
    width: 100%;
    border-radius: 10px;
}
.container{
    padding: 10px;
    display : flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}
h1{
    color: hsl(218, 44%, 22%);
    font-size: 22px;
    margin-top: 10px;
}
p{
    color: hsl(216, 15%, 48%);
    font-size: 15px;
    margin-top: 10px;
}