/* Reset some default browser styles */
body,
h1,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  width: 90%;
  padding: 2rem;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.subtitle {
  color: #777;
  font-size: 1.1rem;
}

.about {
  /* display: flex; */
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
}

nav.links {
  text-align: center;
  /* margin-bottom: 2rem; */
}

nav.links a {
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
  margin: 0 .5rem;
}

nav.links a:hover {
  text-decoration: underline;
}

section {
  text-align: center;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}