body{
    margin: 0;
    padding: 0;
    background-color: #10002B;
    
}
.heroPage{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #10002B;
    
}
.heroPage video{
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    filter: blur(20px);
}
        
.heroContainer{
    position: absolute;
    width: 50%;
    height: 40%;
    border-radius: 10px;
    top: 25%;
    right: 25%;
    background-color: #3c096c82;
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center; /* aligns items horizontally */
    align-items: center;
    color: #9D4EDD;
    text-align: center;
    animation: Deblur 0.5s ease forwards;
}
h1{
    font-size: 100px;
}
*{
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.toolBar{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 100;
    top: 10px;
    width: 90vw;
    left: 5vw;
}
.toolBarNoHero{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 100;
    margin-top: 10px;
    width: 90vw;
    margin-left: 5vw;
    margin-bottom: 5%;
    animation: Deblur 0.5s ease forwards;
}
.buts{
    min-width: 75px;
    height: 50px;
    background-color: #3c096c82;
    color: #9D4EDD;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: all 0.3s ease;
    animation: Deblur 0.5s ease forwards;
}
@keyframes Deblur{
    0%{
        filter: blur(10px);
    }
    100%{
        filter: blur(0px);
    }
}
.buts:hover{
    background-color: #360861;
    transform: scale(1.05);
    color: #af74df;
    margin-left: 1%;
    margin-right: 1%;
}
.box{
    width: 100%;
    height: auto;
    background-color: #3c096c20;
    border-radius: 10px;
    padding: 1%;
    margin-top: 2%;
    /*text-align: center;*/
    z-index: 10;
    
    color: #9D4EDD;
    animation: Deblur 0.5s ease forwards;
    text-decoration: none;
}
.box:hover{
    cursor: pointer;
}
.recent{
    margin-left: 6%;
    border-collapse: collapse;
    width: 80%;
}
a{
    text-decoration: none;
}
tr{
    border-radius: 5px;
    transition: all 0.3s ease;
}
tr:hover{
    background-color: #10002bae;
}
.BGColor{
    width: 300px;
    height: 300px;
    border-radius: 150px;
    position: absolute;
    
    filter: blur(40px);
}
.BGColorSmall{
    width: 100%;
    height: 80%;
    
    position: absolute;
    
    filter: blur(40px);
}
.circle1{
    background-color: #7B2CBF;
    top: 40%;
    right: 50%;
    animation: glowLights 2.5s ease infinite;
    animation-delay: 2s;
}
.circle2{
    background-color: #3C096C;
    top: 40%;
    right: 30%;
    animation: glowLights 2.5s ease infinite;
    animation-delay: 1s
}
.circle3{
    background-color: #C77DFF;
    top: 20%;
    right: 40%;
    animation: glowLights 2.5s ease infinite;
    animation-delay: 3s
}
.circle4{
    background-color: #7B2CBF;
    bottom: -15%;
    right: -15%;
    animation: glowLights 2.5s ease infinite;
    animation-delay: 3s;
}
.circleBG1{
    background-color: #2a1253;
    bottom: 20%;
    right: 0%;
    opacity: 0;
    z-index: 0;
}
.circleWrapper{
    position: relative;
    width: 75%;
    min-height: 40vh;
    margin-left: 12.5%;
    margin-top: 3%;
}
.circleWrapperLong{
    position: relative;
    width: 75%;
    min-height: 40vh;
    margin-left: 12.5%;
    margin-top: 3%;
    margin-bottom: 5%;
}

@keyframes glowLights {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.6;
    }
    100%{
        opacity: 1;
    }
}
.mouseIn{
    animation: mouseEnter 1s ease forwards;
}
.mouseOut{
    animation: mouseExit 1s ease forwards;
}

@keyframes mouseEnter {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes mouseExit {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.thumbnail{
    width: 20%;
    border-radius: 10px;
    float: left;
    box-shadow: 0px 4px 4px #0000002f;
    margin-right: 1%;
}
@media (max-width: 1024px) {
    .heroContainer{
        width: 70%;
        right: 15%;
    }
}

@media (max-width: 768px) {
    .buts{
        font-size: 20px;
    }
    h1{
        font-size: 82px;
    }
    .circleWrapper{
        margin-top: 5%;
    }
    .circleWrapper{
        margin-top: 20%;
    }
    .thumbnail{
        width: 40%;
        margin-top: 3%;
    }
    .circle1{
        right: 40%;
    }
    .circle2{
        right: 20%;
    }
    .circle3{  
        right: 30%;
    }
}

@media (max-width: 480px) {
    h1{
        font-size: 65px;
    }
    .toolBar{
        gap: 5px;
    }
    .toolBarNoHero{
        gap: 5px;
    }
    .circleWrapper{
        min-height: 50vh;
    }
    .thumbnail{
        width: 40%;
        margin-top: 5%;
    }
    .circle1{
        right: 30%;
    }
    .circle2{
        right: 10%;
    }
    .circle3{  
        right: 20%;
    }
}
@media (max-width: 360px) {
    h1{
        font-size: 50px;
    }
    .buts{
        font-size: 16px;
    }
     .circleWrapper{
        margin-top: 40%;
    }
}