/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: neue-haas-grotesk-display, Inter, Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main page styles */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2in 20px 0 20px;
}

.banner {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #2F3852;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.5rem;
  text-align: center;
  color: #666;
}

.vstack {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

/* force to use width of parent */
.stack-text {
    width: 1px;
    min-width: 100%;
    padding: 20px;
    text-align: center;
    line-height: 1.5;
    color: #666;
}

/* Footer styles */
footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-top: auto;
}

/* About page styles */
.bio-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bio-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bio-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.bio-text {
  text-align: center;
  line-height: 1.5;
  color: #666;
}

.bio-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.bio-links img {
  width: 20px;
  height: 20px;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
} 