body {
    background: linear-gradient(215deg, #7d14feef, #2759b8, #841d92, #2783b8);
    background-size: 800% 800%;

    -webkit-animation: AnimationName 50s ease infinite;
    -moz-animation: AnimationName 50s ease infinite;
    -o-animation: AnimationName  50s ease infinite;
    animation: AnimationName 50s ease infinite;
    font-family: 'Sora', sans-serif;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 86% 0%
    }

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

    100% {
        background-position: 86% 0%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 86% 0%
    }

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

    100% {
        background-position: 86% 0%
    }
}

@-o-keyframes AnimationName {
    0% {
        background-position: 86% 0%
    }

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

    100% {
        background-position: 86% 0%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 86% 0%
    }

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

    100% {
        background-position: 86% 0%
    }
}

.page {
    background: rgba(245, 245, 245, 0.932);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.466);
    backdrop-filter: blur(15.1px);
    -webkit-backdrop-filter: blur(15.1px);
    border: 8px solid rgba(255, 255, 255, 1);
    padding: 3vw;
}

.footer {
    margin: 30px
}

.header {
    margin: 0;
    text-align: center;
    margin-bottom: 3vh;
}

h1 {
    background-color: white;
    background-size: 800% 800%;
    -webkit-animation: AnimationName 27s ease infinite;
    -moz-animation: AnimationName 27s ease infinite;
    -o-animation: AnimationName  27s ease infinite;
    animation: AnimationName 27s ease infinite;
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    font-size: 8vw;
    font-family: 'Sora', sans-serif;
    font-weight: 900;
}
@media (min-width: 1480px) {
    h1 {
       font-size: 5vw;
    }
  }
h3 {
    color: white;
}

.text_items {
    position: relative;
    top: -50px;
}

.footer {
    display: inline-flex;
}
.foot_text {
    color: white !important;
    margin-top: 30px;
}
.bmc-btn-container {
justify-content: center !important;
}