html, body {
  margin: 0;
  padding: 0;
}

header {
  background-color: #333333;
  width: 100%;
}

nav {
  margin: 0;
  padding: 20px 0;
  text-align: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  width: 120px;
}

main {
  text-align: center;
  top: 80px;
}

main h1 {
  color: #333;
  font-family: 'Alegreya', serif;
  font-weight: 700;
  font-size: 70px;
  margin-top: 0px;
  padding-top: 80px;
  margin-bottom: 80px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  left: 0;
  bottom: 0;
  width: 100%;
}

footer p {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  text-align: center;
}

.banner {
  width: 100%;
  background-image: url("../images/hospitalist-fellowship-hero.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.banner-container {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 400px;
  }

.banner-content{
  grid-column: 1 / 2;
}

.button {
  background-color: #333;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.3px;
  padding: 16px 40px;
  text-decoration: none;
  text-transform: uppercase;
}

.feature-container {
  padding-top: 80px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-container.feature {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  display: inline-block;
  width: 200px;
  height: 200px;
}

.feature i {
  height: 32px;
}

.feature-container h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 23px;
  text-transform: uppercase;
}

.feature-container p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.feature-container a {
  background-color: white;
  color: #333333;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #333333;
}

#feature1 {
  grid-column: 1 / 2;
  justify-self: center;
  }

#feature2 {
  grid-column: 2 / 3;
  justify-self: center;
  }

#feature3 {
  grid-column: 3 / 4;
  justify-self: center;
  }
