/* General Styles */
body {
  font-family: 'Courier Prime', monospace;
  background-color: #f8f5f0;
  color: #333333;
  margin: 0;
  padding: 0;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #0066cc;
  margin: 0 15px;
  font-size: 1.2em;
}

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

/* Wireframe City Styles */
#city-skyline {
  width: 100%;
  height: 400px;
  background-color: #f8f5f0; /* Match site theme */
  overflow: hidden;
  position: relative;
}

/* About Me Section */
.about-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #ddd;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header and Footer */
header, footer {
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 800px; /* Limit width for readability */
  margin: 0 auto;   /* Center content horizontally */
  padding: 0 20px;  /* Add space on the left and right */
}

section {
  margin: 40px 0; /* Space between sections */
}