.container {
    max-width: 1200px;
    margin: 0 auto
}

body {
    background-color: #000;
}

.carousel-item p {
    font-size: larger;
    text-align: justify;
    color: #fff;
    /* Cambia el color del texto a blanco */
}

.white-text {
    color: white;
}

.header {
    background-image: linear-gradient(0deg,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)), url("logo1.jpg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    align-items: center;
    display: flex;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
 
.logo {
    color: white;
    font-size: 25px;
    font-weight: 800;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: white;
    display: block;
    font-weight: 600;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.menu .navbar ul li a:hover {
    color: yellow;
}

.header-txt {
    text-align: center;
}

.header-txt h1 {
    font-size: 45px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-txt p {
    color: white;
    font-size: 16px;
    padding: 0 250px;
    margin-bottom: 45px;
    font-weight: bold;
}

@media(max-width:991px) {
    #carouselExampleFade .carousel-item img {
        height: auto;
        /* Cambia el height a su valor predeterminado */
    }

    .menu {
        padding: 30px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: black;
        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
    }

    #menu:checked~.navbar {
        display: initial;
    }

    .header {
        min-height: 0vh;
    }

    .header {
        background-image: linear-gradient(0deg,
                rgba(0, 0, 0, 0.3),
                rgba(0, 0, 0, 0.3)), url("logo1.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 70vh;
        align-items: center;
        display: flex;
    }

    .header-content {
        padding: 100px 30px;
    }

    .header-txt h1 {
        font-size: 50px;
        color: white;
    }

    .header-txt p {
        padding: 0;
        color: white;
    }

}