body {
    margin: 0;
    padding: 0;
    background-image: url("images/fondoAbstracto.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: "Lucida Sans";
}

#contenedorPrincipal {
    display:flex;
    flex-direction: column;
}

h1 {
    text-align: center;
    align-self: center;
    padding-top: 25px;
    background-color: rgba(30, 255, 255, 0.137);
    font-size: 45px;
    width: 70%;
    height: 80px;
    border-radius: 10px;
    color: rgb(212, 255, 255) ;
    min-height: fit-content;
}


.intro {
    background-color: rgba(207, 233, 233, 0.288);
    text-align: center;
    align-self: center;
    font-size: 20px;
    padding: 30px;
    border-radius: 10px;
    color: rgb(219, 219, 219) ;
    box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.carrusel {
    margin: 50px auto;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 25px 15px rgba(0, 0, 0, 0.3);
}

.grupo {
    width: 300%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    
    transition: all .5s ease;
    
}

.carta {
    text-align: center;
    align-content: center;
    padding: 20px;
    width: calc(100%/3);
    height: 900px;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.h2 {
    background-color: rgba(207, 233, 233, 0.288);
    border-radius: 10px;
    color: rgb(212, 255, 255) ;
    width: 50%;
    max-width: 500px;
    padding: 15px 0;
    margin-bottom: 25px;
    overflow-wrap: break-word;
}

.link {
    background-color: rgba(207, 233, 233, 0.288);
    border-radius: 10px;
    font-size: 25px;
    width: 50%;
    max-width: 500px;
    padding: 15px 0;
}

a:link {
    color: rgb(212, 255, 255)
}
a:visited {
    color: rgb(191, 250, 186);
}
a:active {
    color: rgb(223, 231, 231)
}

.botones {
    width: 100%;
    padding: 1 em;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.boton {
    width: 3em;
    height: 3em;
    background-color: rgb(186, 226, 250);
    margin: 1em;
    border-radius: 30px;
}
.boton.activo {
    background-color: rgb(191, 250, 186);
}

.efecto-entrada {
    opacity: 0;
}

.animar-entrada {
    animation: aparecerDeLado 1s ease-out forwards;
}

@keyframes aparecerDeLado {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.oculto {
    display: none;
}

.resaltar {
    border-style: solid;
    border-color: rgb(191, 250, 186);
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    border-width: 1px;
}
