*{
    margin: 0;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;

    background: linear-gradient(45deg, #4b90f1, #d93bd6);
    background-size: 400% 400%;

    animation: colorful 28s ease infinite;

    height: fit-content;
    min-height: 100vh;
}

video{
    margin-top: 20px;
    width: 25vw;
    max-width: 350px;
    height: auto;
}

p{
    padding: 2vw;
    margin: 50px 10vw 20px 10vw;
    background-color: rgba(255, 255, 255, 0.719);
}


@keyframes colorful {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}

@media only screen and (max-width: 800px) {
    video{
        width: 50vw;
    }
}