body {
    background-color: #d3d6dc;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
}

header {
    display: flex;
    background-color: #fdfeff !important;
    min-height: 65px;
    justify-content: space-around;
    padding-left: 45px;
    padding-right: 45px;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
}

header img {
    max-width: 65px;
}

header h1{
    padding-left: 17px;
    font-size: 20px;
    cursor: pointer;
}

header a{
    text-decoration: none;
    color: rgb(0, 136, 255);
}

.nav-link:hover{
    color: rgb(255, 217, 0);
    font-size: 15.1px;
}

nav a{
    cursor: pointer;
    font-size: 15px;
}


.BIENVENIDA{
    position: relative;
    display: flex;
    overflow: hidden; /*propiedad para que nada se pueda salir de ese cuadro, en este caso del section*/
    justify-content: space-around;
    background-color: rgb(19, 82, 153); 
    min-height: 300px;
}


.REDES{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: blue;
    float: left;
  }
  .imgredes{
    margin-bottom: 5px;
    width: 35px;
  }


.BANNER-BIENVENIDOS{
    display: flex;
    align-items: center;
}
.imglesia{
    max-width: 320px;
    margin-right: 20px;
}
.LETRA-BN{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.ENLACES{
    background-color: red;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    float: right;
}
.imglaces{
    margin-bottom: 5px;
    text-decoration: none;
    color: #ffffff;
    font-size: 35px;
    width: 30px;
}

.anuncios{
    display: flex;
    background-color: #fdfeff !important;
    color: rgb(0, 136, 255);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    justify-content: center;
    margin: 0;
    font-size: 60px;
    position: relative;
}


.MOVEMAGEN{
    background-color: rgba(19, 82, 153);
    position: relative;
}

.slide{
    margin-right: 15px;
}

.slider{
    background-color:rgb(19, 82, 153);
    width: 85vw;
    height: auto;
    margin: auto;
    overflow: hidden;
    padding-block: 0.3rem;
}

.slider .slide-track {
    display: flex;
    align-items: center;
    animation: scroll 45s linear infinite;
    -webkit-animation: scroll 45s linear infinite;
    width: calc(250px * 14);
}

.slider .slide {
    width: 250px;
}

.slider .slide img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 5px 5px 18px;
    /*aqui puedes cambiar las propiedades de las imagenes*/
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}