
/* Importar fuente outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #d5e1ef;
    font-family: 'Outfit', sans-serif;
}


.card {
    width: 320px;
    height: 499px;

    padding: 16px;
    padding-bottom: 40px;

    border-radius: 20px;

    background-color: #fff;
}  

.card-img {
    width: 100%;
    height: 288px;

    border-radius: 10px;
    margin-bottom: 24px;
}

main {
    padding: 0 16px 0 16px;
}

.card-title{

    font-size: 22px;
    font-weight: bold;
    color: #1f314f;

    text-align: center;

    margin-top: 0;
    margin-bottom: 16px;

    line-height: 120%;
}

.card-info {
    font-size: 15px;
    font-weight: regular;

    letter-spacing: 0.2px;

    color: #68778d;
    line-height: 140%;

    text-align: center;
}