* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .navbar {
   display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  height: 170px;
  }
  header{
  height: 170px;
  border-bottom: solid 1px rgb(206, 206, 206);
  box-shadow: rgb(224, 224, 224) 0 1px 0 0;
  }
  .logo{
        display: flex;
        align-items: center;
        color: #666565;
        font-family: 'Aboreto', system-ui;
        font-weight: lighter;
        font-style: italic;
        font-size: 55px;
        height: 30px;
        margin-top: 55px;
    }
    .containerbar{
        max-width: 1920px;
        margin: 0 auto;
   }
    .menu-toggle {
        display: none;
    }
    
    .bar {
        width: 30px;
        height: 3px;
        background-color: #666565;
        margin: 6px 0;
    }
    
    /* Navbar Linkleri */
    .nav-links {
        list-style: none;
        display: flex;
        margin-left: 55px;
        margin-top: 50px;
  }
    
    .nav-links li {
   margin-right: 40px;
        
    }
    .nav-links li a {
      text-decoration: none;
      color: #312d2d;
      font-size: 18px;
      font-weight: lighter;
      font-family: 'Aboreto', system-ui;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
  .containerAbout{
    display: flex;
    justify-content: center;
    height: 700px;
  }
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
    height: 650px;
    width: 80%;
   border-radius: 50px;
   border: solid grey  1px;
   padding: 15px;
}
.about p{
    font-size: 1.2rem;
    line-height: 2;
    padding-top: 5px;
    color: #5f5f5f;
    text-indent: 25px;
    margin-top: 20px;
}
.about .merhaba{
    font-size: 45px;
    font-weight: lighter;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: italic;
    color: #666565;
}
@media only screen and (width<=600px){
    .logo {
        font-size: 30px;
        margin-right: 10px;
    }
    header{
      height: 160px;
    }
    .menu-toggle {
      display: block;
      margin-top: 10px;
     
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    right: 60px;
    left: 0;
   }
  .nav-links.active {
      display: flex;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 5px;
      margin-top: 70px;
  }
    .nav-links li a {
      font-size: 17px;
   }
    .nav-links li {
      margin: 10px 0;
  }
    .about p{
        font-size: 12px;
 }
 .containerAbout{
    height: auto;
 }
    .about{
       height: fit-content;
    }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .about{
        height: fit-content;
    }
    .logo{
        font-size: 50px;
    }
    .nav-links li a{
        font-size: 15px;
    }
   
}