body {
  margin: 0;
  padding: 0;
  font-family: Andale Mono, monospace;
  background-color: #f6f1e8;
  color: #222;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  box-sizing: border-box;
  z-index: 1000;
}
.navbar a {
  color: #3a6cff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  white-space: nowrap;
}

.navbar a:hover {
  color: #2550a0;
  border-bottom: 2px solid #3a6cff;
}

.navbar a:visited {
  color: #3a6cff;
}

.contact-page {
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.contact-page > * {
  max-width: 520px;
  text-align: left;
  margin-bottom: 20px;
}

.contact-page h1 {
  font-size: 2rem;
}

.contact-info p {
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
  color: #1a73e8;
  font-weight: bold;
  transition: text-decoration 0.2s;
}
.footer {
  margin-top: auto;
  padding: 40px 0 20px 0;
  font-size: 0.75rem;
  color: #8a8a8a;
  text-align: center;
  letter-spacing: 0.05em;
}