@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis&display=swap');

*{
    font-family: 'Bebas Neue', cursive;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-background{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}


@media (min-aspect-ratio: 16/9){
    .vid-background{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9){
    .vid-background{
        width: auto;
        height: 100%;
    }
}

.content{
    text-align: center;
    /*font-family: 'Poppins', sans-serif;*/
    overflow: hidden;
}
.content h1{
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
    font-size: 160px;
    color: #a64da6;
    font-weight: 600;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #d75fd7;
    font-size: 24px;
    border: 2px solid #fff;
    width: 300px;
    height: 75px;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.anim{
    position: fixed;
    bottom: 10;
    right: 10;
    width: 200px;
    height: 100px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.anim::after{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: conic-gradient(transparent, transparent, transparent, #d400d4);
    animation: animate 4s linear infinite;
    animation-delay: -2s;
}
.anim::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: conic-gradient(transparent, transparent, transparent, #00ccff);
    animation: animate 4s linear infinite;
}
.anim span{
    position: absolute;
    inset: 5px;
    border-radius: 16px;
    background: #0c1022;
    z-index: 1;
}
h2{
    /*font-family: 'Dosis', cursive;*/
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
	background: linear-gradient(to right, #30CFD0 0%, #d400d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes animate {
   0%
   {
    transform: rotate(0deg);
   } 
   100%
   {
    transform: rotate(360deg);
   } 
}