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


.site-header {
  background-color: #003366;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

.site-title {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin: 0;
  text-align: left;
  line-height: 1.1;
}

.site-title .now {
  color: #f28c28; /* warm, readable orange */
}

.site-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #e6e6e6;
  text-align: left;
  max-width: 32rem;
}


section {
  padding: 2rem;
  background: white;
  margin: 1rem auto;
  max-width: 800px;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.aboutme {
  display: flex;
  align-items: center;
  gap: 2rem;

  background-color: #eef2f6;
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.aboutme-text {
  flex: 2;
}

/*
.aboutme-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
*/

.aboutme-image {
  flex: 1;
  display: flex;
  flex-direction: column; /* stack image + name vertically */
  align-items: center;    /* center them horizontally */
}

.aboutme-name {
  margin-top: 0.5rem;    /* space between image and name */
  font-weight: bold;
  font-size: 1rem;
  color: #222;            /* matches text color of site */
  text-align: center;
}

.aboutme-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  object-position: 10% center;
  border-radius: 50%;
  border: 4px solid white;
}

@media (max-width: 700px) {
  .aboutme {
    flex-direction: column;
    text-align: center;
  }

  .aboutme-image img {
    width: 140px;
    height: 140px;
  }
}
