* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-image: url('1124275.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #080808;
}


header {
  background-color: #333;
  color: #fff;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h2 {
  margin-bottom: 1rem;
  color: #007BFF;
}

.project {
  background: #fff;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 5px solid #007BFF;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: #ccc;
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #007BFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
html, body {
  height: 100%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header, section {
  flex-shrink: 0;
}

footer {
  margin-top: auto;
}
#about {
  text-align: center;
}
