
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  padding: 15px 0;
  z-index: 1000;
}
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
}
.nav-list li {
  margin: 0 20px;
}
.nav-list a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}
.nav-list a:hover {
  color: #00bcd4;
}

.section {
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-section {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  text-align: center;
}
.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid white;
}
.title {
  font-size: 40px;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 20px;
}

.about-section {
  background: #f5f5f5;
  color: #333;
  text-align: center;
}

.projects-section {
  background: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.project-card {
  padding: 30px;
  background: #f0f0f0;
  border-radius: 10px;
  transition: transform 0.3s, background 0.3s;
}
.project-card:hover {
  transform: translateY(-10px);
  background: #00bcd4;
  color: white;
}

.contact-section {
  background: #111;
  color: white;
  text-align: center;
}

.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.m{
    margin-bottom: 20px;
    font-size: 50px;
}

#html{
    padding: 20px;
    font-size: 30px;
}

#student{
    margin: 20px;
    font-size: 30px;
}
#name{ 
    margin: 20px;
    font-size: 30px;
}

a{
    text-decoration: none;
    color: black;
}