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

body{
    background-color: hsl(212, 45%, 89%);
    padding: 60px;
    font-family: Outfit, "sans serif";
    display: block;
}
h1{
   color: hsl(218, 44%, 22%);
    font-weight: 700;
}
h2{
    margin-top: 10px;
    color: hsl(216, 15%, 48%);
    font-weight: 400;
}
img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.container-cardcure{
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    border-radius: 15px;
    padding: 20px;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    width: 375px;
    margin: auto;
}