body {
  margin: 0 auto;
  font-family: Helvetica, sans-serif;
  text-align: center;
  background: linear-gradient(to right, rgb(221, 214, 243), rgb(250, 172, 168));
}

.gallery img {
  width: 100%;
}

h1 {
  text-align: center;
  font-size: 40px;
  font-weight: bolder;
  color: rgba(17, 33, 210, 1);
  font-family: "Courier New", Courier, monospace;
}

h2 {
  font-family: serif;
  font-size: 30px;
  font-style: italic;
  color: cornflowerblue;
}

h3 {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: darkslateblue;
}

h4 {
  font-family: Impact, fantasy;
  font-size: 20px;
  font-style: italic;
  color: cornflowerblue;
}

p {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
}

.coded {
  font-family: monospace;
  font-size: 18px;
  color: #0f3bb3;
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
}

#menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 16px 0;
  color: cornflowerblue;
  margin: 0 auto;
  background-color: cornflowerblue;
}

#menu a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 250ms, color 200ms;
}

#menu a:hover {
  background-color: #ffffff;
  color: cornflowerblue;
}

.page-header {
  text-align: center;
  padding: 40px 20px;
  color: darkslateblue;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.contact-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.contact-card h2 {
  color: #1c3faa;
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  font-size: 16px;
  margin: 6px 0;
  color: #333;
}

.reach {
  font-size: 25px;
  color: #555;
  margin-top: 10px;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.hero-bio,
.hero-stats {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.hero-bio h2,
.hero-stats h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: darkslateblue;
}

.hero-bio ul,
.hero-stats ul {
  list-style: none;
  padding: 0;
}

.hero-bio li,
.hero-stats li {
  margin-bottom: 10px;
  font-size: 16px;
}

.hero-bio li::before,
.hero-stats li::before {
  content: "•";
  color: #c0392b;
  padding-right: 6px;
}
