body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d6cccc;
    padding-top: 60px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e9e9e9;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    color: #333;
}

h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

p,
ul {
    line-height: 1.6;
    color: #666;
}

.personal-info,
.skills,
.experience,
.education {
    margin-bottom: 30px;
    margin-top: 30px;
}

.skills ul,
.experience ul {
    list-style-type: none;
    padding: 0;
}

.skills ul li,
.experience ul li,
.knowledge ul li,
.project ul li,
.shortbio ul li {
    background: #f4f4f4;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.skills ul li {
    display: inline-block;
    margin-right: 10px;

}

.myimg img {
    --s: 200px;
    width: 160px;
    float: right;
    border: 5px solid #555;
    box-sizing: border-box;
    object-fit: cover;
    cursor: pointer;
    transition: .5s;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -webkit-transition: all 1s ease;
}

.myimg img:hover {
    filter: grayscale(0%);
    filter: gray;
    -webkit-filter: grayscale(0%);
    filter: none;
    transition: 1s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

/* Mobil cihazlar için duyarlı tasarım */
@media (max-width: 768px) {
    .menu {
      font-size: 14px; /* Mobil cihazlar için daha küçük yazı */
      display: none;
      flex-direction: column; /* Menüyü dikey hale getirir */
    }
  }

.menu {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    /* Menü sabit kalır, sayfa kaydırılsa bile yukarıda durur */
    top: 0;
    width: 100%;
    

    max-width: 100%; /* Taşmayı önler */
    overflow: hidden; /* Gereksiz taşmaları gizler */
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: left;
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 16px;
    padding: 15px 20px;
    background-color: #444;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.menu ul li a:hover {
    background-color: #f4f4f4;
    color: #fff;
}

.menu ul li a:active {
    background-color: #777;
    color: #fff;
}

.menuFoot {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    /* Menü sabit kalır, sayfa kaydırılsa bile yukarıda durur */
    bottom: 0;
    width: 100%;
}

.menuFoot ul {
    list-style: none;
    display: flex;
    justify-content: left;
}

.menuFoot ul li {
    margin: 0 10px;
}

.menuFoot ul li a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 12px;
    padding: 15px 20px;
    background-color: #444;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.menuFoot ul li a:hover {
    background-color: #f4f4f4;
    color: #fff;
}

.menuFoot ul li a:active {
    background-color: #777;
    color: #fff;
}

/* Menüye sabit üst boşluk eklemek için içerik */
body {
    padding-top: 60px;
    /* Menüye yer açmak için üst boşluk */
    padding-bottom: 60px;
}

.linkedinPicture img {
    margin-top: 20px;
}

/* Hamburger menü simgesi */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
  }
  
  /* Menüde gizlilik durumu */
  .hidden {
    display: none;
  }
  
  /* Mobil cihazlar için düzenlemeler */
  @media (max-width: 768px) {
    .menu-icon {
      display: block; /* Hamburger simgesi sadece mobilde görünsün */
    }
  
    /* Mobil menü kapalı hali */
    #mobile-menu.hidden {
      display: none;
    }
  
    /* Mobil menü gösterildiğinde */
    #mobile-menu {
      display: block;
      position: fixed; /* Menü ekranın üstünde sabitlenecek */
      top: 0;
      left: 0;
      width: 100%; /* Ekranın tamamını kaplasın */
      background-color: #333;
      z-index: 1000; /* Menü diğer içeriklerin önünde olsun */
      padding: 10px 0;
      list-style: none;
      margin: 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Gölge efekti ver */
    }
  
    #mobile-menu li {
      text-align: center; /* Menü öğeleri ortalansın */
      margin: 10px 0; /* Menü elemanları arasında boşluk bırak */
    }
  
    #mobile-menu li a {
      text-decoration: none;
      color: #e7e6e6; /* Menü link rengi */
      font-size: 18px; /* Yazı boyutu */
    }
  }