#protected-content{
   display: none; 
}




body {
    background: white;
 }
 .nav-bar{
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 15vh;
 }
 .logo {
    font-size: 1cm;
 }
 .items {
    display: flex;
    gap:1cm;
    font-size: 0.7cm;
 }
 .items a{
    color: white;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
 }
 .items a:hover{
    text-decoration: underline;
    text-underline-offset: 0.5cm;
    font-size: 0.8cm;
 }
 
 
 /*Profile*/
 
 
 .intro-buttons{
    display: flex;
    gap: 1cm;
 }
 .cv,.contact{
    padding: 0.5cm;
    border-radius: 1cm;
    border: 2px solid black;
    font-size: 0.5cm;
 }
 .cv{
    background-color: white;
    color: black;
 }
 .cv:hover {
    background-color: black;
    color: white;
 }
 .contact {
    background-color: black;
    color: white;
 }
 .intro h1{
    font-size: 2cm;
    color: rgba(0, 0, 0, .8);
 }
 .intro h2{
    font-size: 1cm;
    color: rgba(0, 0, 0, .6);
    margin-top: -1cm;
 }
 #profile{
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .downarrow{
    position: absolute;
    right: 15px;
    bottom:15px
 }
 .downarrow:hover{
    cursor: pointer;
 }

 #about{
    height: 96vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
 }
 .pretitle{
    font-size: 0.8cm;
    font-style: italic;
    text-align: center;
    color: rgba(0,0,0,.6);
 }
 .title{
    font-size: 1.5cm;
    font-style: bold;
    text-align: center;
    margin-top: -1cm;
 }
 .about-container{
    display: flex;
    flex-direction: column;
    gap:30px;
 
 
 }
 .content1{
    display: flex;
    gap: 2cm;
    justify-content: center;
    width: 1000px;
    margin: auto;
 }
 .edu,.exp{
    border: 2px solid black;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    box-shadow: 3px 3px rgba(0,0,0,.5);
 }
 .content1 h1{
 text-align: center;
 font-size: 0.8cm;
 }
 .content1 li{
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: .5cm;
 }
 .content2{
    width: 900px;
    margin: auto;
    border: 2px solid black;
    box-shadow: 3px 3px rgba(0,0,0,.5);
    border-radius: 10px;
    padding: 20px;
 }
 .down{
    position: absolute;
    right: 10px;
 }
 /*skills*/
 #skills{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
 .skill_container{
    display: flex;
    justify-content: space-around;
 }
 .skill_content1,.skill_content2,.skill_content3{
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 3px 3px rgba(0,0,0,.5);
    padding: 20px;
    width: 400px;
 }
 .subtitle{
    text-align: center;
    font-size: 2rem;
 }
 .skill_container li {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
 } 
 /*Project*/
 #projects{
    height: 96vh;

 }
 .project_containers{
    display: flex;
    flex-direction: column;
    gap:30px;
 }
 .clock_project h1{
    position: absolute;
    z-index: 2;
    align-self: top left;
    font-size: 50px;
  }
  .clock_project button {
    position: absolute;
    z-index: 2;
    align-self: bottom right;
    border-radius: 20px;
    font-size: 20px;
  }
 .clock_project img{
    height: 300px;
    width: 500px;
    border-radius: 50px;
    opacity: 0.3;
    position: absolute;
    z-index: 1;
 }
 
 /*project*/


#projects {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
 
 
 .project-container{
    display: flex;
    justify-content: space-around;
 }
 
 
 .project1,.project2,.project3{
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: 3px 3px rgba(0,0,0,.5);
    width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }
 .project-img{
    border-radius: 10px;
    height: 200px;
    width: 300px;
 }
 .project-title{
    font-size: 2rem;
 }
 .project-btn{
    font-size: 1.5rem;
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
    transition: all 0.5s ease-in-out;
 }
 .project-btn:hover{
    background-color:black;
    color: white;
    cursor: pointer;
 }
 