* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body { 
    min-height: 100vh;
    /*background-image: linear-gradient(-45deg, #2f7d9e 50%, #6ba2e0d0 50%);*/
    box-shadow: 0px 0px 20px rgb(0, 58, 113);
    background: url(../img/fon15.jpg) no-repeat center top;
    background-size: cover;
}

.titulo {
    font-size: 45px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 40px;
    color: rgb(0, 58, 113);
    text-transform: uppercase;
}

.subtitulo {
    margin: 0;
    color: rgb(0, 58, 113);
    display: inline;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Young Serif', serif !important;
}

.texto { 
    color: black;
    margin: 7px 20px;
    font-size: 18px;
    /*font-family: 'Dancing Script', cursive;*/
    margin-top: 0;
    text-align: justify;
    font-family:Arial, Helvetica, sans-serif;
}
.carousel-item ul{
    text-align: justify;
}

hr{
    display: flex;
    width: 360px;
    border: solid 2px rgb(0, 58, 113);
}

/***********************
Estilos de Materialize
***********************/

.carousel {
    min-height: 550px;
}

.carousel .carousel-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    background-color: white;
    box-shadow: 0px 0px 20px rgb(0, 58, 113);
    height: 500px;
    width: 400px;
    border-radius: 25px;
}
/*
.carousel .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 25px;


}
*/

.carousel .carousel-item img{
    width: 100px;
    height: 100px;
    position: relative;
    margin: 10px;
    
    
}

.carousel .indicators .indicator-item{
    width: 20px;
    height: 20px;
    background-color: rgb(2, 61, 138);
}

.lista{
    text-align: left;
    text-decoration: dashed;
}

@media screen and (max-width: 700px) {
    .texto{
        font-size: 16px;
    }
    .carousel .carousel-item{
        justify-content: center;
        width: 340px !important;
    }
    .subtitulo{
        font-size: 18px;
    }
    body{
        max-width: 400px !important;
    }
    
}