body {
    background-image: linear-gradient(rgba(173, 216, 230, .1), rgba(173, 216, 230, .1)),url(assets/img/TAP.gif); /* Replace with your GIF's URL or file path */
    background-repeat: no-repeat; /* Prevents the GIF from tiling */
    background-size: contain; /* Scales the GIF to cover the entire viewport */
    background-position: right; /* Centers the GIF in the viewport */
    height: 100vh; /* Ensures the body covers the full height of the viewport */
    margin: 0; /* Removes default body margin */
    padding: 0; /* Removes default body padding */
}
/* Style for content over the GIF to ensure readability */
.content {
    position: relative;
    z-index: 1;
    color: blue; /* Example text color for contrast */
    text-align: center;
    padding-top: 100px;
    margin-right: 25%;
}