html {
    scroll-behavior: smooth;
}

body{
    margin: 0;
    display: flex;
    font-size: medium;
    color:rgb(167, 164, 160);
    font-family: 'Kdam Thmor Pro', sans-serif;
}

body::-webkit-scrollbar{
    display: none;
}

p {
    text-align: justify;
}

hr{
    margin: 0;
    width: 100%;
    height: 1px;
    border: none;
    background-color:aliceblue;
}

svg{
    fill:#ffffff
}

li {
    line-height: 2.5;
}

li::marker{
    color: rgb(221, 106, 81);
}

.dark-color{
    color: rgb(221, 106, 81);
}

.light-color{
    color: #ffffff;
}

.details{
    margin: 10px 0;
    color: #a7a4a0;
    text-decoration: none;
}
.details:hover{
    color: #ffffff;
}

a:active{
    color: #ffffff;
}

.photo-details{
    width: 20rem;
    display: flex;
    height: 100vh;
    position: fixed;
    font-size: medium;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(129, 60, 34);
}

.photo{
    width: 45%;
    height: 9.5rem;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 25px;
    border: 8px solid rgba(255, 255, 255, 0.2);
} 

.data{
    display: flex;
    margin-left: 20rem;
    position: relative;
    flex-direction: column;
    width: calc(100% - 20rem);
    background-color: #171a1b;
}

.data-details{
    display: flex;
    margin: 0 8rem;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.name{
    margin:0;
    font-size:5rem;
}

.personal-info{
    margin: 0;
    font-size: large;
}

.about{
    line-height: 1.5;
    font-size: medium;
    text-align: justify;
    letter-spacing: 1px;
    white-space: pre-line;
}

.links{
    display: flex;
    margin: 1rem 0;
}

.icon-container{
    margin-right: 2rem;
}


.icons{
    font-size: 2.5rem;
    border-radius: 10%;
    
}


.heading-type1{
    color: #ffffff;
    margin: 2rem 0;
    font-size: 4rem;
}

.education-details{
    margin: 2rem 0;
}

.institue-year{
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.institue{
    margin: 0;
    font-size: xx-large;
}

.year{
    margin: 0;
}

.degree{
    font-size: 20px;
    margin: 8px 0 1rem ;
}

.skills{
    color: #ffffff;
}

.heading-type2{
    color: rgb(221, 106, 81);
    margin: 2rem 0;
    font-size: 4rem;
}

.skills-subheading{
    margin: 1rem 0;
    font-size: xx-large;
}

.skills-languages{
    margin: 1rem 0 4rem;
    font-size: 45px;
}

.workflow-content{
    display: flex;
    font-size: large;
    align-items: center;
}

.tick-mark{
    font-size: 2rem;
    margin-right: 1rem;
    color: rgb(221, 106, 81);
}

.project{
    margin-bottom: 2rem;
}

.project-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-name{
    margin: 1rem 0;
    font-size: 30px;
    color: rgb(221, 106, 81);
}

.project-time-period{
    margin: 1rem 0;
}

.project-link{
    display: flex;
    color: #ffffff;
    align-items: center;
    text-decoration:none;
}

.link-arrow{
    margin-right: 1rem;
}

.link-url{
    margin: 0;
}

.volunteering{
    margin-bottom: 2rem;
}

.volunteering-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.volunteering-group-name{
    font-size: 30px;
    margin: 1rem 0;
}

.mobile-head{
    z-index: 1;
    margin-top: 0;
    background-color: rgb(110, 47, 33);
    height:10vh;
    display: none;
}

.mobile-name{
    font-size: large;
}

.menu-button{
    font-size: 24px;
    border-radius: 10%;
    padding: 0 4px;
    border: 0.5px solid gray;
}

@media screen and (max-width: 700px){

    body{
        flex-direction: column;
    }

    p{
        text-align: left;
    }

    .photo-details{
        width: 100%;
    }

    .mobile-head{
        width: 100%;
        position: fixed;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .photo-details{
        display: none;
    }

    .data{
        width:100%;
        margin:0;
        margin-top: 2vh;
    }

    .data-details{
        margin: 0;
        padding: 10vh 1.5rem 1.5rem;
    }

    .institue-year{
        flex-direction: column;
        align-items: baseline;
    }

    .project-title{
        flex-direction: column;
        align-items: baseline;
    }

    .volunteering-title{
        flex-direction: column;
        align-items: baseline;
    }

    .heading-type1{
        font-size: 38px;
    }

    .heading-type2{
        font-size: 38px;
    }

    .skills-subheading{
        font-size: x-large;
    }

    .skills-languages{
        font-size: 2rem;
    }

    .name{
        font-size: 3rem;
    }

    .about{
        letter-spacing: 0px;
    }

    .volunteering-group-name{
        font-size: 1.5rem;
    }
    
}
