/* Resetting some default styles */
* {
    margin: 0;
    padding: 0;
    /* background-color: #0F100F; */
    box-sizing: border-box;
    /* color: white; */

    
    /* font-family: "League Spartan", sans-serif; */
    /* font-family: "Open Sans", sans-serif; */
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;

}

li{
    list-style-type: none;

}

#typewriter{
    color: white;
}

/* loader */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive styles */
@media(max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    ul {
        margin-top: 10px;
    }

    ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



/* Adding custom scroll bar */

::-webkit-scrollbar{
    width: 10px;
    background-color: #0F100F;
    position: relative;
}

::-webkit-scrollbar-thumb{
    background-color:  #976FCE;
    border-radius: 10px;
    border: 1px solid white;
    
}
