body{
    background: linear-gradient(
        135deg,
        #020617,
        #0f172a,
        #1e293b
    );

    min-height:100vh;
}

.titulo{
    color:white;
    font-weight:bold;
    text-align:center;
    margin-bottom:40px;
    font-size:3rem;
}

.tarjeta{
    background-color:#1e293b;
    color:white;
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:all .3s ease;
}

.tarjeta:hover{
    transform:translateY(-10px);
    box-shadow:
    0 15px 30px rgba(0,0,0,.4);
}

.card-img-top{
    height: 220px;
    object-fit: cover;
}

.card-body{
    display: flex;
    flex-direction: column;
}

.card-body p{
    min-height: 70px;
}

h5{
    font-weight: bold;
}

iframe{
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}