* {
    margin: 0px;
    padding: 0px;
}

.main {
    margin: 15px;
}

.contenedor {
    display: flex;
    justify-content: space-around;
}

.card {
    width: 150px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 10px lightgray;
}

.title {
    background-color: black;
    color: white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cuerpo {
    padding: 15px 5px 15px 5px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pie {
    background-color: gray;
    color: white;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}