body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
header {
    width: 100%;
    background-color: #f1f1f1;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 30px;
  }
  
  .navbar-logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #7d6464;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
  }
  
  .navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navbar-menu li {
    margin-right: 20px;
  }
  
  .navbar-menu li:last-child {
    margin-right: 0;
  }
  
  .navbar-menu li a {
    font-size: 16px;
    text-decoration: none;
    color: #333;
  }
  
  .navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  @media screen and (max-width: 768px) {
    .navbar-menu {
      display: none;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 10px;
      background-color: #f1f1f1;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    }
  
    .navbar-menu li {
      margin: 10px 0;
    }
  
    .navbar-toggle {
      display: block;
    }
  
    .navbar-menu.show-menu {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
  /*
  @media screen and (max-width: 768px) {
  .navbar-menu.show-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    color: #fff;
  }
  
  .navbar-menu.show-menu li a {
    color: #fff;
  }
}*/
.skills-section i {
    position: relative;
  }
  
  .skills-section i::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  
  .skills-section i:hover::after {
    opacity: 1;
  }
  .info-section {
    margin-top: 50px;
  }
  #down {
    margin-top: 70px;
  }
  
  /*styles for buttons*/
  .code-btn {
    width: 120px;
    height: 50px;
    border-radius: 20px;
    border: 2px solid black;
    color: #f1f1f1;
    background-color: #333;
    font-size: 30px;
    font-family: monospace;
  }
  .code-btn:hover {
    background-color: aliceblue;
    color: #333;
    transition: 2s;
    font-weight: bolder;
  }
  .live-btn {
    width: 120px;
    font-size: 30px;
    height: 50px;
    border-radius: 20px;
    border: 2px solid black;
    color: #f1f1f1;
    background-color: #333;
    font-family: monospace;
  }
  .live-btn:hover{
    
    border-radius: 20px;
    border: 2px solid black;
    color: #000000;
    transition: 2s;
    background-color: #ffffff;
  }
  button a:hover {
    text-decoration: none;
    font-family: cursive;
  }
  button a {
    color: #f8f8f8;
  }
 .more-btn {
    width: 120px;
    height: 40px;
    font-size: 25px;
    font-family: monospace;
    text-align: center;
    color: #000000;
    background-color: #000000;
    margin-left: 30px;
    border-radius: 20px;
    border: 2px solid black;
 }
 .more-btn:hover {
    background-color: #c57373;
    color: #ffffff;
    transition: 2s;
 }
  