*{
    margin: 0;
    padding: 0;
    font-family: 'Didact Gothic', sans-serif;
    color:white;
}

body::-webkit-scrollbar{
    display: none;
}

#header{
    /* background-image: url(bg25.jpg); */
    background-color: #0f131e;
    background-size:cover;
    height: 100vh;
    width:100%;
    position: relative;
}
.info{
    display: flex;
    flex-direction: column;
    height:max-content;
    justify-content: center;
    /* top:15%; */
    position: absolute;
    width:100%;
    height: 100%;
}
.bks1{
    /* margin-left: auto;
    margin-right: auto; */
    animation: shine 1.5s linear infinite;
    align-self: center;
    width: 25%;
    border-radius:50%;
    /* box-shadow: 0px 2px 15px 0.5px rgb(2, 2, 2); */
}
@keyframes shine {
    0%{
        box-shadow: 0px 0px 40px 1px rgba(233, 76, 233, 0.617);
    }
    25%{
        box-shadow: 0px 0px 40px 1px rgba(76, 100, 233, 0.617);
    }
    50%{
        box-shadow: 0px 0px 40px 1px rgba(76, 233, 110, 0.617);
    }
    75%{
        box-shadow: 0px 0px 40px 1px rgba(233, 212, 76, 0.617);
    }
    100%{
        box-shadow: 0px 0px 40px 1px rgba(233, 76, 233, 0.617);
    }
}
.black-bg{
    color: black;
}
.logo{
    cursor:pointer;
}
.social{
    display: flex;
    flex-direction: column;
    width:50px;
    height:max-content;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    top:10%;
    position: fixed;
    align-items: center;
    border-radius: 0 10px 10px 0%;
    z-index: 2;
}
.name{
    color: rgb(255, 255, 255);
    font-weight:900;
    font-size: 4vw;
    align-self: center;
    padding-top: 10px;
    margin-bottom: 0;
}
.nav-bar{
    position:fixed;
    display:flex;
    flex-direction: row;
    width:100%;
    height: 60px;
    /* justify-content:space-between; */
    align-items: center;
    font-size: 24px;
    z-index: 3;  /* as carousel indicators z-index:2 */
    background-color: inherit;
    /* font-family: 'Didact Gothic', sans-serif; */
    /* opacity:1; */
}
.links{
    position: absolute;
    margin:0;
    padding: 0;
    display:flex;
    column-gap:4rem;
    right:2%;
}
.links li{
    list-style:none;
    position: relative;
}
.links li::after{
    content: "";
    width:0%;
    position: absolute;
    height:2px;
    left:50%;
    bottom:0;
    background-color: rgb(255, 140, 0);
    transition: cubic-bezier(0.19, 1, 0.22, 1)  .5s;
}
.links li:hover::after{
    width:100%;
    left:0%;
}
.clicked{
    box-shadow: 0px 0px 10px 1px tomato;
    background-color: tomato;
    padding:3px 9px 3px 9px;
    border-radius: 8px;
    transition: 0.2s;
}
a{
    text-decoration: none;
    color:rgb(255, 255, 255);
}
.toggle-img{
    width: 40px;
    border: none;
    cursor:pointer;
}
/* .menu-btn{
    border: none;
    background-color: transparent;
} */
.toggle_btn{
    margin-left: 50px;
    display:none;
}
.dropdown_menu{
    position:absolute;
    width:100%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius:10px;
    margin-top: 50px;
    overflow: hidden;
    z-index: 1;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu li{
    top:2px;
    padding : 0.7rem;
    display: flex;
    align-items:center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}
.cursor{
    color:white;
    animation: blink 1s linear infinite;
}

@keyframes blink{
    0% {
        opacity: 100%;
    }
    50%{
        opacity: 0%;
    }
}

.up-arrow{
    position: fixed;
    right:2%;
    bottom:4%;
    background-color: rgb(17, 206, 10);
    padding:9px 13px 9px 13px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
    z-index: 2;
    transition: all 0.5s ease;
}

.hide{
    display: none;
}

.up-arrow:hover{
    color: rgb(17, 206, 10);
    background-color: white;
}
@media(max-width:350px){
    .social i{
        font-size: 40px;
        left:0;
    }
    .social{
        width:40px;
    }
}
@media(max-width:450px){
    .links li a{
        font-size:20px;
    }
    .links{
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    .links{
        column-gap: 0rem;
        justify-content: space-around;
    }
    .nav-bar{
        height: 8%;
    }
    .links li:hover::after{
        width:0%;
    }
    .bks1{
        width:250px;
    }
    .info{
        row-gap: 10px;
        h1{
            font-size: 40px;
        }
        
    }
}