/* Put your custom styles here */
.headgradient {
    width: 100wh;
    height: auto;
    color: #fff;
    background: linear-gradient(-90deg, #2072a8, #2072a8, #2072a8, #E33233, #385b43, #2072a8, #2072a8);
    background-size: 400% 400%;
    -webkit-animation: Gradient 80s ease infinite;
    -moz-animation: Gradient 80s ease infinite;
    animation: Gradient 80s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mydiv {
    width: 100%;
    height: 100%;
    color: black;
    font-weight: bold;
    animation: myanimation 40s infinite;
}

@keyframes myanimation {
    0% {
        background-color: #2072a8;
    }

    25% {
        background-color: #2072a8;
    }

    50% {
        background-color: #649173;
    }

    75% {
        background-color: #E33233;
    }

    100% {
        background-color: #2072a8;
    }
}

.section {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section h1 {
    text-align: center;
    font-size: 6rem;
    font-family: "Cookie";
    padding: 20px;
    margin: 15px;
    z-index: 1;
    opacity: 0.7;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: lightblue;
    width: 100%;
    height: 700px;
    opacity: 0.5;
}