body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.carousel-item img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(241, 134, 11, 0.4);
}
.container {
    margin-top: 20px;
}
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
h1 img {
    width: 50px; /* Ajusta el tamaño del logo */
    height: 50px;
    margin-right: 15px;
}
.card-body a {
    color: inherit;
    text-decoration: none;
}
footer {
    background-color: #343a40;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: auto;
}
@media (max-width: 768px) {
    .carousel-item img {
        max-height: 250px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h1 img {
        width: 40px;
        height: 40px;
    }
}
