/* Basic resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Fira Sans';
  src: url('font/FiraSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Fira Sans', Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

nav {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

header {
  text-align: center;
  background-color: #222;
  color: #fff;
  padding: 40px 0;
}

header h1 {
  font-size: 3em;
  font-weight: bold;
}

header h2 {
  font-size: 1.5em;
  font-weight: normal;
}

section.intro {
  padding: 40px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

section.intro h3 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bio {
  width: 60%;
}

.image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

section.questions {
  background-color: #fff;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.questions h3 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.question h4 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.question p {
  font-size: 1em;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}
