/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #0d0e14;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 100px;
    height: 70px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

.projects {
    text-align: center;
    margin-top: 50px;
}

.projects h1 {
    font-size: 36px;
    font-weight: bold;
}

.projects p {
    font-size: 18px;
    color: #b3b3b3;
}

.project-list {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.project-card {
    background-color: #1e1e2f;
    border-radius: 8px;
    margin: 0 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.project-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.project-card h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.project-card p {
    color: #b3b3b3;
    font-size: 16px;
    margin-bottom: 15px;
}

.github-link {
    background-color: #6c63ff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.github-link:hover {
    background-color: #5754d1;
}
