
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Instrument+Serif:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+BE+VLG:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    scroll-margin-top: 150px;
}
body{
    background-color: rgb(10, 10, 10);
    color: aliceblue;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
}

.cursive{
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.hero{
    width: 70%;
}
.heading{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 54px;
}
.hero-box span{
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.245);
    border-radius: 10px;
}
.hero-subtext{
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.452);
}
.hero-button{
    background-color: #ff0000ee;
    /* padding: 5px; */
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    
    transition: outline 0.3s ease-in-out;
}
.hero-button:hover{
    /* transform: scale(1.2); */
    background-color: #ff0000ee;
    /* outline-width: 5px; */
    outline: solid 5px #ff000079;
}
section{
    height: 100vh;
}
.box{
    height: 30%;
    width: 30%;
    background-color: rgb(148, 80, 212);
    background-image: conic-gradient(from 0deg at 50% 50%, #ffd9ad 0deg, #139cef 180deg, #fd864d 360deg);
    border-radius: 50%;
}
.box2{
    height: 400px;
    width: 400px;
    background-color: rgb(85, 0, 164);
    background-image: conic-gradient(from 0deg at 50% 50%,#ff0000 0deg,hsl(354,100%,50%) 54.89161972682219deg,#00a6ff 106.69924423399361deg,#4797ff 162deg,#04f 252.00000000000003deg,#ff8000 306.00000000000006deg,hsl(0,100%,50%) 360deg);
    border-radius: 50%;
}
.box3{
    height: 300px;
    width: 300px;
    background-color: rgb(85, 0, 164);
    background-image: conic-gradient(from 0deg at 50% 50%,#ffd9ad 0deg,#139ce5 180deg,#fd864d 360deg);
    border-radius: 50%;
}
.square{

    position: absolute;
    /* bottom: -15%; */

}
.layer1{
    opacity: 0.5;
    /* filter: blur(32px); */
}
.layer2{
    opacity: 0.8;
    filter: blur(60px);
}
.layer3{
    opacity: 1;
    animation: rotating 6s linear infinite;
}
.blur{
    --webkit-filter:blur(30px) ;
    filter: blur(32px);
    height: 80vh;
    width: 70vw;
    display: flex;
    justify-content: center;
    align-items:center;
    
   
}
.circlebg{
    position: relative;
    bottom: -300px;
    /* left: 0; */
}
.background{
    position: absolute;
    /* bottom: -10%; */
    z-index: -2;
    /* position: relative; */
    bottom: 10px !important;
    /* left: 0; */
    overflow: hidden;
    filter: blur(30px);

}

a{
    text-decoration: none;
    color: white;
}


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

.band{
    margin: 0px 0px;
    height: fit-content;
}