@font-face {
    font-family: headingFont;
    src: url(/Rajdhani-SemiBold.ttf);
}

*{
    margin: 0;
    padding: 0;
}
body{
    overflow-x: hidden;
    background: rgb(11, 11, 11);
}

#navBar{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    width: 100%;
    overflow: hidden;
    background-color: rgba(11, 11, 11, 0.8);
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#menu{
    float: right;
}
#name{
    font-size: 1.5em;
    color: rgb(206, 206, 206);
    margin: 1em 2em;
    float: left;
    font-weight: 500;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
}
li{
    display: inline;
    float: left;
}

.a{
    text-decoration: none;
    color: rgb(206, 206, 206);
    font-size: 1.5em;    
    float: right;
    padding: 0 1em;
    margin: 1em 0.3em;
}
.content{
    position: absolute;
    z-index: 1;
    left: 0;
    top: 90%;
    width: 100%;
    font-size: 1em;
    display: flex;
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.wrapper{
    width: 100%;
    max-width: 1250px;
    margin: auto;
}
.heading{
    text-align: center;
    font-family: headingFont;
    padding: 1.5em;
    font-size: 2em;
    color:rgb(174, 37, 37);
    transition: 0.4s;
    cursor: pointer;
}
.heading:hover{
    color: rgb(240, 66, 66);
}
.p{
    color: rgb(194, 194, 194);
    margin: 0em;
    padding: 0 0.7em;
    padding-bottom: 4em;
    font-size: 1.3em;
    line-height: 1.4em;
    font-family: 'K2D', sans-serif;
}
#footer{
    margin-top: 100px;
    display: flex;
    margin-bottom: 30px;
    font-size: 1em;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.footerCenter{
    margin: auto;
    color: rgb(233, 233, 233);
    text-align: center;
}
#footer a{
    color: rgb(233, 233, 233);
    text-decoration: none;
    margin: 0 1em;
}
.socialmedia{
    width: 35px;
    height: auto;
    margin: auto;
    cursor: pointer;
    transition: 0.3s;
    z-index: 4;
    padding: 0.7em;
    filter: invert(100%);
}
.socialmedia:hover{
    transform: scale(1.24) rotate(360deg);
}
.language{
    position: fixed;
    color: white;
    text-decoration: none;
    float: left;
    top: 18px;
    left: 250px;
    padding: 0.4em;
    border: 1px solid rgb(220, 220, 220);
    border-radius: 4px;
    font-size: 1.3em;
    cursor: pointer;
    z-index: 99999;
    transition: 0.4s;
    background: transparent;
}
.language:hover{
    transform: scale(1.1);
    background: rgba(124, 22, 22, 0.41);
}

@media only screen and (max-width: 1079px) {
    #name{
        font-size: 1.1em;
        margin-right: 0.4em;
    }
    .a{
        font-size: 1.1em;
        padding: 0 0.4em;
        margin: 1em 0.3em;
    }
    .heading{
        font-size: 1.5em;
    }
    .p{
        font-size: 1em;
    }
    .language{
        position: absolute;
        top: 80%;
        left: 30px;
        background: rgba(11, 11, 11, 0.7);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 1;
    }
}
@media only screen and (max-width: 1000px) {
    #name{
        font-size: 0.7em;
    }
    .a{
        font-size: 0.7em;
    }
}