/* You can set properties like color, font, background for everything of a given type:*/
@import url('https://fonts.googleapis.com/css?family=Montserrat|PT+Sans');

body {
  font-family: 'Montserrat', sans-serif;
  color: black;
  background-color: white;
  padding-left: 10%;
  padding-right: 10%;
}

h1, h2, h3, h4 {
  font-family: 'PT Sans', sans-serif;
}


a {
  text-decoration: none;
  color: rgb(30, 77, 43);
}

a:visited {
  text-decoration: none;
  color: rgb(30, 77, 43);
}

a:hover {
  text-decoration: none;
  color: black;
}


/* everything below is about the navigation bar at the top */
.navbar {
  list-style: none;
  padding-top: 36px;
  position: absolute;
  top: 0;
  left: 10%;

}

.navbar a {
  color: #878996;
  text-decoration: none;
  font-size: 20px;
  padding-right: 20px;
}

.navbar a:visited {
  color: #878996;
}

.navbar a:hover {
  color: black;
}

.navbar a.selected {
  color: black;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.text-on-page {
  margin-top: 84px;
  width: 77%;
  flex-basis: 77%;
  flex-shrink: 0;
}

.small-text {
  width: 60%;
  flex-basis: 60%;
}

.content-wrapper > .image {
  flex-basis: 0;
  flex-grow: 1;
  margin-top: 84px;
}

.headshot {
  margin-left: 36px;
  width: 200px;
}
