@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
:root {
    primary: #C014BF;
    accent: #540E0E;
    black: #000000;
    white: #ffffff;
}
*{
    font-family: 'Yatra One', cursive;
}
body{
    margin: 0;
    padding: 0;

}
.banner{
    object-fit: cover;
    height: 100vh !important;
    width: 100%;
    object-position: center;
    z-index: 0;
}
.content{
    height: 100vh;
}
@media screen and (min-width: 577px){
    .content{
        width: 60%;
    }
}
@media screen and (min-width: 769px){
    .content{
        width: 50%;
    }
}
.title{
    z-index: 2;

}
@keyframes snakeAnimation {
    0% { transform: scale(.9) }
    50% { transform: scale(1.1) }
    100% { transform: scale(.9) }
}
@keyframes communityAnimation {
    0% { transform: translateY(0px) }
    50% { transform: translateY(-8px) }
    100% { transform: translateY(0px) }
}
.snake{
    width: 100px !important;
    aspect-ratio: 1/1;
    animation: snakeAnimation 1s ease-in-out;
    animation-iteration-count: infinite;
}
.community{
    animation: communityAnimation 1s ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes bordered {
    0% { border: 2px solid #BDBB4A; }
    50% { border: 2px solid #274338; }
    100% { border: 2px solid #BDBB4A; }
}
.blurred{
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.2px);
    -webkit-backdrop-filter: blur(3.2px);
    box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 0px #ffffff;
    animation: bordered 1s ease-in-out;
    animation-iteration-count: infinite;
}
a:hover{
    transform: scale(1.05);
    transition: all .4s;
}
a:hover .card-body svg{
   /* fill: #C014BF !important; */
   transition: all .4s;
   -webkit-backdrop-filter: blur(3.2px);
   backdrop-filter: blur(3.2px) !important;
}
.twitter{
    background-color: #00ACEE !important;
}
.youtube{
    background-color: #C4302B !important;
}
.tiktok{
    background: linear-gradient(to left, #ff0050, #00f2ea, #000000);
}
.discord{
    background-color: #7289da !important;
}
.card{
    opacity: .8;
    transition: all .4s;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.2px);
    -webkit-backdrop-filter: blur(3.2px);
    box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 0px #ffffff;
}
.card:hover{
    opacity: 1;
}
.gap-2-4{
    gap: 2.3rem;
}
a{
    text-decoration: none !important;
}
hr{
    height: 2px !important;
    background-color: white;
}