
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Gothic&family=Lexend:wght@100..900&family=Lobster&family=Pinyon+Script&display=swap');


#page1{
    height: 100vh;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



#nav{
    position: absolute;
    top: 2%;
    z-index: 10;
    width: 65%;
    background-color: #ffffff83;
    box-shadow: rgba(228, 228, 228, 0.35) 0px 0px 15px;  
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 200px;
}

#nav h1{
    font-family: "League Gothic", serif;
    color: rgb(0, 0, 0);
    font-weight: lighter;
    font-size: 2vw;
    margin-left: 2%;
}

#pagedescription{
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    font-size: clamp(1rem, 2vw, 100vw);
}

#nav #getintouch{
   height: 2vw;
   width: 10vw;
   background-color: #000000;
   color: #ffffff;
   border-radius: 195px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 2px;
   font-weight: bold;
   font-size: 1vw;
   text-decoration: none;
}

#decrocircle {
    height: 70vw;
    width: 70vw;
    min-height: 1000px;
    min-width: 1000px;
    background: #120c0c;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(18, 12, 12, 0) 40%,
        rgba(81, 129, 217, 0.7) 70%,
        rgba(81, 129, 217, 1) 100%
    );
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 60%);
    border-radius: 50%;

    /* Uneven multi-layered glow */
    box-shadow:
        0px 20px 80px rgba(81, 129, 217, 0.5),
        -40px -30px 100px rgba(81, 129, 217, 0.3),
        60px 50px 120px rgba(81, 129, 217, 0.4),
        0px 0px 200px rgba(81, 129, 217, 0.6);

    /* Animation */
    animation: rotateCircle 5s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, 60%) rotate(0deg);
    }
    to {
        transform: translate(-50%, 60%) rotate(360deg);
    }
}

#nametital{
    font-family: "League Gothic", serif;
    letter-spacing: -5%;
    font-weight: 100;
    font-size: clamp(10rem, 25vw, 100vw);
    background: url(../image/gradient.jpeg) 0 0 / cover no-repeat;
    transform: translateY(-5%);
    color: #de466c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 99;
}

@media only screen and (max-width: 800px) {

    #nav{
        width: 80%;
        height: 3%;
    }

    
    #nav h1{
        font-size: 3vh;
    }

    
    #nav #getintouch{
        height: 90%;
        width: 10vh;
        font-size: 1vh;
    }



}