html, body {
    height: 100%;
}

body {
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    gap: 50px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    width: 350px;
    height: 550px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card .card-informations {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card .card-informations img {
    width: 90%;
    border-radius: 40px;
    padding: 20px;
}

