.container{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    top: 0;
}

.container .content{
    height: 150%;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;   
    z-index: -1;
}

nav{
    position: fixed;
    top: 0;
    width: 80%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 0.4rem 1rem #353535;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 2;
}


nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-left: 1rem;
    margin-right: 1;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 600;
    color: #fff;
}

/* End of Navigation */



/* About Start */


.about{
width: 100%;
position: absolute;
top: 70%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 1;
}


.about .profile{
    width: 8rem;
    aspect-ratio: 0.9;
    border-radius: 50%;
    background-image: url(../Images/me.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0.1rem 0.2rem 0.3rem #fff;
}


.info-el{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}



.about .name{
    margin-top: 1rem;
    backdrop-filter: blur(1rem);
    border-top-right-radius: 3rem;
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
    box-shadow: 0rem 0.1rem 0.3rem #fff;
    padding: 0.5rem;
}

.about .name h1{
    color: #fff;
    font-family:sans-serif;
    text-align: center;
    font-size: 1.4rem;
    word-spacing: 0.3rem;
    padding: 1rem;
}

.about .title h1{
    font-family:monospace;
    text-align: center;
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    word-spacing: 0.6ch;
    letter-spacing: 0.07ch;
    text-shadow: 10px #000000;
}

.about .brief{
    backdrop-filter: blur(1rem);
    width: 60%;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    box-shadow: 0.1rem 0rem 0.2rem #fff;
}


.reach-btn{
    border: none;
    padding: 1.3rem;
    background: #000000;
    color: rgb(255, 255, 255);
    border-radius: 1rem;
    margin-top: 1rem;
    box-shadow: 0rem 0 0.3rem #fff;
    cursor: pointer;
}


.about .brief p{
    color: #fff;
    text-align: center;
    font-family: sans-serif;
    line-height: 2rem;
    letter-spacing: 0.108ch;
    padding: 0.4rem;
}

/* End of About */


/* Footer */
footer{  
    position: fixed;
    width: 97vw;
    bottom:0;
    backdrop-filter: blur(6rem);
    box-shadow: 0 0.1rem 0.5rem #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    z-index: 2;
}

.about-me ul{
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
width: 100%;
padding: 1rem;
list-style: none;
}

.about-me ul li a{
    font-family: sans-serif;
    color: #ffffff;
    text-decoration: none;
}



/* Scroll bar */
::-webkit-scrollbar{
    width: 0.4rem;
}


::-webkit-scrollbar-track{
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb{
    backdrop-filter: blur(10px);
    border-radius: 0.4rem;
    background: #ffffff9c;
}
