* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.nav {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: antiquewhite;
}

.nav-list {
  display: flex;
  margin-right: 2rem;
}

ul {
  list-style: none;
}

li {
  padding: 20px;
}

.welcome-section,
.projects-section,
.contact-section,
footer {
  text-align: center;
  padding: 100px;
}

.welcome-section {
  background-color: aliceblue;
  height: 70vh;
}

h1 {
  padding: 20px;
  font-size: 2.5rem;
  color: #333;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.image {
  width: 200px;
  border-radius: 50%;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.projects-section {
  background-color: #f9f9f9;
}

.project-tile {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  background-color: white;
}

.contact-links a {
  text-decoration: none;
  font-size: 1.2rem;
  margin: 10px;
  display: inline-block;
  color: #333;
  transition: color 0.3s ease;
}

.contact-links a i {
  margin-right: 8px;
}

.contact-links a:hover {
  color: #0077b5; /* LinkedIn blue or any accent color */
}

footer {
  background-color: #222;
  color: white;
  padding: 20px;
}
