body{
    background-color: rgb(171, 248, 248);
    font-family: 'Inter', sans-serif;
    color: #222;
}
header
{
    width: fit-content;
    
    background-color: #efe7e7;
    padding: 1px 1px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 25px auto;  

 nav ul{
   display: flex;
   list-style: none;
   align-items: center;
    gap: 30px;
   padding: 0;
   padding-left: 20px;
 }
 nav li {
   border-right: 2px solid #ccc;
    padding-right: 30px;
 }
 nav li:last-child {
   border-right: none;
 }
 nav a {
   text-decoration: none;
   font-weight: bold;
   color: #817777;
   font-size: 30px;
   transition: color 0.3s ease;

   padding: 0px 10px;
 }
  nav a:hover {
   color: #dc3545;
 }

}
footer{
        width: fit-content;

    background-color: #efe7e7;
    
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 25px auto;  
    padding: 20px 20px;
    ul {
        display: flex;
   list-style: none;
   align-items: center;
    padding: 0;
    margin: 0;
 
   
    }
     li {
   border-right: 2px solid #ccc;
    padding: 0 40px;
 }
  li:last-child {
   border-right: none;
 }
    a {
           text-decoration: none;
   font-weight: bold;
   color: #817777;
   font-size: 30px;
    }
        a:hover {
    color: #dc3545;
        }
}
.profile-pic {
    width: 180px;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    height: 180px;
    border-radius: 50%;
    border: #dc3545 4px solid;
    object-fit: cover;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.metu {
    width: 150px;
    height: auto;
}
.project-screenshot {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 10px;
    border-radius: 15px;
    border: #dc3545 3px solid;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.menu {
    padding-top: 0px;
}
section
{
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.link {
   text-decoration: none;
   font-weight: bold;
   color: #292db9;
   transition: color 0.3s ease;
}
.link:hover {
   color: #dc3545;
}
.lang-switch {
    display: flex;
    width: fit-content;
    border-radius: 15px;
    padding: 5px 10px;
     
    align-items: center;
    gap: 8px;
    
}
.active-lang {
    font-weight: bold;
    color: #222;
   font-size: 25px;
   
}
.lang-link {
    text-decoration: none;
    font-weight: bold;
    color: #817777;
    transition: color 0.3s ease;
    font-size: 25px;
}
.lang-link:hover {
    color: #dc3545;
}
.divider {
    color: #ccc;
    font-size: 25px;

}
