body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

header {
    background-color: #08a3f6;
    color: rgb(175, 175, 175);
    text-align: center;
    padding: 20px;
}

.sidebar {
    width: 220px;
    min-height: 100vh;
}
.sidebar a {
    display: block;
    color: rgb(224, 207, 207);
    text-decoration: none;
    margin: 10px 0;
}

.sidebar a:hover {


    
    color: #0dcaf0;
}


.d-flex {
    min-height: 100vh;
}

.content {
    flex: 1;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/*Dimesion del carrusel*/
.carousel-inner img{
    width: 100%; /*Ajusta la imagen al ancho del carrusel*/
    height: 500px; /*Define una altura fija*/
    object-fit: cover; /*Recorta la imagen para llevar el sapcio sin deformarse*/
}