
body {
    font-family: "Comic Sans MS";
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}


.navbar {
    background-color: #162649 !important; 
    padding: 10px 20px;
    border-bottom: 5px solid #445eac;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: bold;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}


#carouselExampleSlidesOnly {
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 1000px;
}

/* Sección de tarjetas */
.container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #162649;
}

.card-text {
    font-size: 1rem;
    color: #555;
}


.footer-container {
    background-color: #162649;
    border-top: 5px solid #445eac;
    color: white;
    text-align: center;
    padding: 70px 0;

}

.footer-container a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}


@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .col {
        margin-bottom: 20px;
    }
}
