html {
    margin: 0;
    border: 0;    
    box-sizing: border-box;
    font-family: outfit, sans-serif;
    height: 100%;
}

body {
    background-color: #D5E1EF;
    color: #000000;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card {
    height: 480px;
    width: 290px;
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 16px;
}

.card-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    height: 288px;
    width: 288px;
    border-radius: 10px;
    object-fit: cover;
}

.card .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 131px;
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px ;
    text-align: center;
    gap: 0px;
}

.card .text-container h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 120%;
    
}
.card .text-container p {
    letter-spacing: 0px;
    line-height: 140%;
    font-size: 15px;
}

.Footer {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
}