body{
    background-image: url(/imagenesSociales/pazBackground.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

button:hover{
    color: aqua;
    box-shadow: 15px 13px 20px blue;
}
button:active{
    color: pink;
    box-shadow: 20px 10px 10px red;
}
img:hover{
    color:aqua;
    box-shadow: 20px 10px 10px blue;
}
img:active{
    color: pink;
    box-shadow: 20px 20px 20px red;
}

@keyframes myFrameDash{
    from{transform: translateX(300px); opacity: 0;}
    to{transform: translateX(0); opacity: 1;}
}