*{
    margin: 0;
    box-sizing: border-box;
}
body{
    background:url(../IMG/imagen_principal.png);
    background-size: 1920px ;
    background-repeat: no-repeat;
    }
    
    #menu{
        font-family: "Roboto Condensed";
        font-weight:700;
        font-style: normal;
        color: rgb(0, 43, 201);
        font-size: 20px;
        word-spacing: 30px;
        margin-top: 40px;
        text-align: center;
    }
    a{
        text-decoration: none;
    }
    #holi{
        background-color: antiquewhite;
        padding: 5px;
        border-radius: 5px;
    }
    a:visited{
        color:rgb(0, 43, 201);
    }
.modal{
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111bd;
    display: flex;
    opacity: 0;
    pointer-events: none;

}
.modal--show{
opacity:1;
pointer-events: unset;
transition: opacity .5s;
}
.modal_container{
    margin: auto;
    width: 90%;
    max-width: 600px;
    max-height: 90%;
    background-color: rgb(0, 43, 201);
    border-radius: 80px;
    padding: 3em 2.5em;
    display: grid;
    gap: 1em;
    place-items: center;
    grid-auto-columns: 100%;
}
.modal_title{
    color: white;
    font-size: 20px;
    font-family: "Roboto Condensed";
}
.modal_paragraph{
    color: white;
    margin-bottom: 10px;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
.modal_img{
    width: 90%;
    max-width: 300px;
}
.modal_close{
    text-decoration: none;
    color:  rgb(0, 43, 201);
    background-color: rgb(255, 255, 255);
    padding: 6px 12px;
    border: 5px solid;
    border-radius: 10px;
    display: inline-block;
    font-weight: 500;
    transition: background-color .3s;
    font-family: Arial, Helvetica, sans-serif;
}
.modal_close:hover{
    color: rgba(0, 0, 0, 0.8);
    background-color: rgb(255, 255, 255);

}
.modal_container img{
    height: 220px;
    width: auto;
}
a img{
    width: 200px;
    height: auto;
position: fixed;
bottom: 45px;
right: 370px;}
#copy{
    color:rgb(0, 43, 201);
    text-align: center;
    position: relative;
    top: 880px ;

}
#animacion img{
    height: 185px;    
margin-left: 45px;
margin-bottom: 15px;
position: absolute;
bottom: 10px;
animation: patita 10s ;
}

@keyframes patita {
    0%{
        transform:translateY(0px) translateX(0px)
    } 
    50%{
        transform: translateY(-350px) translateX(820px);
    }
    100%{
        transform: translateX(1980px) translateY(-900px);
    }
}
 #animacion img:hover{
    transform: scale(1.1,1.1);
}