/* Hint #1: The fonts used are: Montserrat:400,600i and Open Sans:800. These are available from Google Fonts*/
/* Hint #2: The backround color used is: #ffcc00. The foreground color used is: #231900. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fc0;
}

article {
  width: 36rem;
  margin: 1.5rem 6rem;
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 3.5rem;
}

.by {
  margin: 1rem 0;
  text-indent: 0;
  font-weight: 600;
  font-style: italic;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.by::before {
  display: block;
  content: "";
  height: .75rem;
  width: 5.5rem;
  margin-right: .5rem;
  background-color: black;
}

p {
  width: 29rem;
  margin: .5rem 0;
  font-size: .9rem;
  line-height: 1.3rem;
}

p:nth-child(1)::first-letter {
  margin-right: .5rem;
  font-size: 4.2rem;
  font-family: 'Open Sans', sans-serif;
  float: left;
  line-height: 0.9;
}

p:not(:nth-child(1)):not(.by) {
  text-indent: 2rem;
}

/*
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
*/