body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: white;
  line-height: 1.4;
  font-weight: normal;
  max-width: 1400px;
  margin: 0px auto;
}

header {
  text-align: center;
}

h1 {
  font-family: 'Limelight';
  font-size: 64px;
  color: firebrick;
  text-align: center;
  margin: 40px;
}

h2 {
  margin: 15px 0;
  font-weight: bold;
}

h3 {
  font-family: 'Limelight';
  margin: 30px auto;
  font-weight: bold;
  color: firebrick;
  font-size: 25px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: firebrick;
  padding: 7px 10px;
  border-radius: 6px;
  transition: all 0.5s linear;
  display: inline-block;
}

a:hover {
  color: firebrick;
  background-color: white;
}

.image {
  position: relative;
}

img {
  width: 100%;
}

.one-third .image {
  margin: -50px auto -30px;
}

.one-third {
  background-color: #070407;
}

.one-third:first-of-type {
  background-color: #070407;
}

.one-third:nth-of-type(5) {
  background-color: #D2CAE2;
}

.one-third:nth-of-type(6) {
  background-color: black;
}


.one-third:nth-of-type(7) {
  background-color: #050303;
}

.one-third:nth-of-type(8) {
  background-color: #595761;
}

.one-third:last-of-type {
  background-color: black;
}

.two-third:first-of-type {
  background-color: #393c41;
}

.two-third:nth-of-type(2) {
  background-color: #3C3E42;
}

.two-third:nth-of-type(3) {
  background-color: #333731;
}

.two-third:nth-of-type(9) {
  background-color: #090507;
}

.two-third:nth-of-type(10) {
  background-color: #242627;
}

b {
  font-weight: bold;
}

.one-third .text {
  padding: 30px 30px 0 30px;
  top: 0;
  left: 0;
  z-index: 99;
  position: relative;
}

.one-third {
  display: block;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  overflow: hidden;
}

.two-third .text {
  align-content: center;
  display: inline-flex;
  flex-wrap: wrap;
  height: 100%;
  width: 50%;
}

.two-third {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
}


.two-third .image {
  width: 50%;
  margin-left: auto;
  order: 2;
}

.text {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

p {
  margin-bottom: 30px;
}

footer {
  border-top: 1px solid firebrick;
  text-align: center;
  display: block;
  padding: 20px 10px;
  overflow: hidden;
  color: firebrick;
}

footer a {
  background: none;
  color: firebrick;
}

@media only screen and (max-width: 767px) {
  .row {
    display: block;
  }

  .one-third {
    display: block;
  }

  .two-third {
    display: block;
  }

  .two-third .image,
  .two-third .text {
    width: 100%;
    height: auto;
    display: block;

  }

}