Hello I am applying RWD to my website. I have a problem because GIF does not want to fill whole page. When I make it smaller it leaves white spaces on the top and on the bottom. I would like to make him fill whole page I do not care about quality. Object-fit: cover / fill does not work.
.Background {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: rgb(248, 245, 245);
height: 100%;
width: 100%;
background-image: url('../../videos/gif.gif');
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
@media screen and (max-width: 35em) {
.Background {
height: auto;
}
}