/* styles.css */

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    //background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    //background: linear-gradient(45deg, red, orange, yellow, green, blue, violet);
    background: linear-gradient(45deg, red, orange, yellow, green, blue, violet, blue, green, yellow, orange);
    animation: moveBackground 2s linear infinite; /* Adjust the animation duration as needed */
    background-size: 100% 500%;
}


@keyframes moveBackground {
    0% {background-position: 100% 0;}
    100% {background-position: 0 100%;}
}


.video-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif-container {
    position: absolute;
    bottom: 0;
    left: 0;
}

video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
