* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0,0,50,1) 30%, rgba(43,0,66,1) 70%, rgba(83,0,66,1) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Header section */
  header {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    justify-items: center;
    gap: 50px; 
    margin-top: 20px; 
  }
  
  nav ul li {
    display: inline;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    border: 2px solid white;
    padding: 20px 40px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  nav ul li a:hover {
    background-color: white;
    color: black;
    box-shadow: 0 0 70px 10px rgb(236, 6, 140);
    transition: 0.15s;
  }

/* About Me Section */
.about-me {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.about-me-content {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
}

.about-me h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    
}

.about-me p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 700px) {
    .about-me h1 {
        font-size: 2rem;
    }

    .about-me p {
        font-size: 0.9rem;
    }

    nav ul li a {
      font-size: 16px;
      padding: 10px 20px;
  }

  nav ul {
    flex-direction: column; 
    gap: 10px; 
  }
  
  nav ul li {
      width: 100%; 
      text-align: center; 
  }
  
  .my-projects-text {
      font-size: 2rem; 
  }
  
  .project-list {
      grid-template-columns: 1fr; 
  }
  
  .project-item {
      padding: 15px; 
  }
  
  .project-item h2 {
      font-size: 18px;
  }
  
  .project-item p {
      font-size: 12px; 
  }
}
