@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header navigation */
header nav {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

header a {
  display: block;
  padding: 1rem;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

header a:hover,
header .active {
  color: #0070f3;
}

/* Link styling globally */
a {
  text-decoration: none;
}

a:hover {
  color: #0070f3;
  text-decoration: none;
}

/* Main content */
main {
    flex: 1;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Home section */
#home {
  text-align: center;
  padding-top: 80px;
}

#home img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

h1,
h2 {
  text-align: center;
  font-weight: 600;
  font-size: 2.2rem;
}

p {
    font-weight: 300; 
    font-size: 1.1rem; 
  }

/* Footer */
footer {
  background: #2b2b2b;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

footer a {
  color: #fff;
  margin: 0 0.75rem;
  font-size: 1.5rem;
}

footer a:hover {
  color: #ddd;
}