body {
    background-image: url(img/capa.jpeg);
    background-attachment: fixed;
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
}

/*----nav------*/

#menuDesk, #menuMobile {
    color: white;
    border-radius: 10px;
}

#menuDesk a:hover,
#menuMobile a:hover {
    background: rgb(55, 48, 48, 0.4);
    color: yellow;
    border-radius: 10px;
}

/*-------content-------*/

#content {
    background: rgba(55, 48, 48, 0.4);
    border-radius: 20px;
    color: white;
}

#galery img {
    border-radius: 20px;
}

h1 {
    color: yellow;
    font-size: 38px;
    font-family: 'Great Vibes', cursive;
}

#icon {
    display: inline;
    margin: 10px;
    padding: 20px;
    background-color: rgba(32, 23, 23, 0.344);
    border-radius: 50px;
}

#icon:hover {
    border: 1px solid yellow;
    transition: 1s;
}

footer{
    padding: 10px;
    font-size: 15px;
}

footer a {
    text-decoration: none;
}

[data-anime]{
    opacity: 0;
    transition: 2s;
}

[data-anime="top"]{
    transform: translate3d(0, -50px, 0);
}

[data-anime="left"]{
    transform: translate3d(-50px, 0, 0);
}

[data-anime="right"]{
    transform: translate3d(50px, 0, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}


@media (min-width: 995px) {
    #menuMobile {
        display: none;
    }
}



@media (min-width: 10px) and (max-width: 994px) {
    #carousel2 {
        display: none;
    }
    #menuDesk {
        display: none;
    }
}
