*{
    color:rgb(225, 233, 246);
    letter-spacing: 1px;
    font-weight: 150;
    line-height: 1.6em;
}


body {
    background: repeating-radial-gradient(circle, #fff, #fff 5px, #000 6px);
    background-size: 50px 100px;
    background-image: url('/images/bg.jpg');
    /*background-image: linear-gradient(144deg,#174c67, #3e2481 50%,#38d3de);*/
    background-size: cover; /* This property ensures the background image covers the entire container */
    background-position: center; /* This property centers the background image within the container */
    background-repeat: no-repeat;
    font-family: "Lora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /* height: 100vh; Ensure body covers entire viewport height */
}


.sub-section{
    margin-bottom:50px;
    display: flex;
    justify-content: center;}






/*--------------------------------------------navbar------------------------------------*/
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    user-select: none;
}

.nav-links{
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all .2s ease;
    position: relative;
    background-color: #c1b6b624;
    backdrop-filter: blur(10px);

}


.nav-links-item {
    cursor: pointer;
    transition: all .2s ease;
    font-size: 18px;
    z-index: 2;
    padding: 15px 5px;
    margin: 0 5px;
    font-weight: 300;

}


a {
    text-decoration: none;
}



/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 40%;
    margin: auto;
}
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 60px;
}






/*--------------------------------------------dashboard------------------------------------*/



.dashboard { /* starts with "." to mark it as a class */
    margin-top: 50px;
    width: 80%;
    display: flex;
    align-items: center;
    min-height: 40vh; /* vh means view port height to mark that we need height of the section = to the full screen */
    justify-content: center;
    flex-direction: column;
}


h1{
    font-size:65px;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.tagline{
    font-size:34px;
    display: flex;
    justify-content: center;
    font-family:sans-serif;
    text-align: center;
    font-weight:200;
}





/*--------------------------------------------About-------------------------------------------*/



.outer-div{
    padding: 15px;
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 40px;
    animation: scroll-watcher;
}

.animate {
	animation:animate .6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.work-design{
    border-style: dotted;
    border-radius: 20px;
    border-color: cyan;
    padding: 15px;
    margin: 30px;
}

@-webkit-keyframes animate {
	0% {opacity: 0;-webkit-transform: translateY(30vh);}
	100% {opacity: 1;-webkit-transform: translateY(0%);}	
}


@keyframes animate {
	0% {opacity: 0;transform: translateY(30vh);}
	100% {opacity: 1;transform: translateY(0%);}
}


.delay {
    animation-delay: .2s;
}



h2{
    font-size: 24px;
    justify-content: center;
    font-family:sans-serif;
    font-weight:100;
    text-align: center;
    margin-bottom: -1px;

}

.p-about-me{
    text-align: center;
    font-weight: 120;

}






/*----------------------------------Skills----------------------------------*/



.skills-wrapper{
    margin-top: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.skills-wrapper span {
    padding: 8px;
    border-radius: 0.5em;
    display: inline-block;
    margin: 4px;
    border-radius: 9px;
    background: #02050ead;
    box-shadow: inset 7px 7px 14px #02050d,
            inset -7px -7px 14px #1a243d;
    font-size: 15px;
}


.skills-wrapper span:hover{
 background: linear-gradient(90deg, rgba(30,144,255,1) 0%, rgba(0,212,255,1) 100%);
}






/*--------------------------------experience-----------------------------*/



h3{
    font-size: 20px;
    text-align: center;
    font-weight: 300;
}

.exp-inner-container{
    justify-content: center;
    padding: 10px;
}



.about-job{
    text-align: left;
    font-weight: 120;

}






/*--------------------------------education------------------------------*/


/*
.sub-section education{
    display: flex;
    justify-content: center;} 

*/



.education-outer-div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}


.colored-container{
    margin-right: 20px;
    width: 50%;
    margin-top: 22px;
    border-radius: 0.6em;
    background-image: linear-gradient(163deg, #1cbeda 0%, #0038de 100%);
    align-items: center;
    transition: all .1s;
}

.inner-container{
    width: 50%;
    height: 300px;
    display: flex;
    align-items: center;
    /*transition: all 0.4s;*/
    border-radius: 0.6em;
    margin: 0.8%;
    justify-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;


}


.unis-logo{
    width: 80px;
    height: 80px;
}
.inner-container:hover{
    transform: scale(1.1);
}


.unis-name{
    font-size: 18px;
    text-align: center;
}












/*--------------------------------footer------------------------------*/


.socials-div{
    display: flex;
    margin-bottom: 5vh;
    justify-content: center;
    gap: 30px;
}

.logos {
    height: 1px;
}





/*-----------------*/

@media only screen and (max-width:2000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}