﻿.ContenedorDeGif {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(251 251 251 / 89%);
    z-index: 9999;
    text-align: center;
}
.Gif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/**Media querys**/
/* Móviles */
@media (max-width: 480px) {
    .Gif img{
        width:100%;
    }
}

/* Tabletas */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Laptops y pantallas pequeñas */
@media (min-width: 769px) and (max-width: 1024px) {
  
}

/* Pantallas grandes y ordenadores de escritorio */
@media (min-width: 1025px) and (max-width: 1200px) {
}

/* Pantallas extra grandes y televisores */
@media (min-width: 1201px) and (max-width: 1500px) {
}

@media (min-width: 1500px) {
}

