body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f8f8f8;
}

header {
    position: relative;
    background: #111;
    color: white;
    padding: 80px 40px;
    text-align: center;
    min-height: 80px;
}

header h1 {
  margin: 0;
  font-size: 3rem;
}

header p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #ccc;
}
.profile-photo {
    position: absolute;
    top: 30px;
    left: 40px;

    width: 180px;
    height: auto;

    border-radius: 10px;

    border: 3px solid white;

    box-shadow: 0 8px 20px rgba(0,0,0,.45);
}
nav {
  background: white;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin: 0 15px;
  color: #111;
  text-decoration: none;
  font-weight: bold;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  background: white;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
  margin-top: 0;
  color: #111;
}

footer {
  text-align: center;
  padding: 30px;
  color: #666;
  font-size: 0.9rem;
}

.tagline {
  font-size: 1.3rem;
  font-weight: bold;
}