.member-card img {
  width: 125px;
  height: 125px;
  border-radius: 100%;
}

pre {
  background-color: #f0f0f0;
  padding: 1em;
  overflow-x: auto;
  border-radius:8px;
  max-width: 100%;
}

code {
  font-family: Consolas, Monaco, 'Courier New', monospace;
  color: #333;
  display: block;
  white-space: pre;
}

.member-card {
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  padding: 30px;
  margin: 30px auto;
  max-width: 1000px;
  text-align: center;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, #f0f4f8, #d9e2ec);
  margin: 0;
  padding: 0;
  color: #333;
}

h1 {
  text-align: center;
  padding: 1em;
  color: #2c3e50;
}

header {
  background-image: url('your-background.png');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}