html {
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  max-width:1000px;
  min-width:200px;
  width: 90%;
  margin:0 auto;
}

@media all and (max-width: 900px) {
  article p {
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

a, a:visited, .pseudo_link {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
}

a:hover, .pseudo_link:hover {
  color: black;
  text-decoration: underline;
  cursor: pointer;
}

.article_spacing {
  margin-top: 50px;
}

.center {
  text-align: center;
}

.space {
  margin: 50px 0 50px 0;
}

.text-italic {
  font-style: italic;
}

.font-larger {
  font-size: large;
}

#reviews_box {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

#reviews_box li {
  margin-right: 2%;
  margin-top: 10px;
  margin-bottom:10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 200px;
  padding: 5px;
  background: #EEEEEE;
}

#reviews_box .text {
  font-family: 'Codystar';
  font-size: x-large;
}

#reviews_box .author {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px black solid;
  color: gray;
  font-size: medium;
  display:block;
}

.press {
  margin: 20px 0;
}

.press h1 {
  margin-top: 0;
}

h1.with_subtitle {
  margin-bottom: 0;
}

.full_width {
  width:100vw;
  left: calc(-50vw + 50%);
  position: relative;
}

.subtitle_h1 {
  border-left: #DDDDDD 30px solid;
  padding-left: 5px;
  font-size: medium;
}

.press .cite:before {
  content: ">> ";
}

.press .cite {
  padding: 0 10% 0 30px;
  margin-top: 10px;
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media all and (max-width: 565px) {
  .side_by_side {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}

.side_by_side {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.side_by_side p {
  -webkit-align-self: center;
  align-self: center;
  margin-right: 2%;
  margin-top: 10px;
  margin-bottom:10px;
  padding: 5px;
}

.side_by_side p.grow {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 300px;
  max-width: 600px;
}