@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,700,300i,600i,700i|Raleway:600,800");

.body {
  display: flex;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #f3f0f0;
  color: #353535;
  font-size: 16px;
  flex-direction: column;
  padding-bottom: 50px;
}

@media (min-width: 800px) {
  .body {
    flex-direction: row;
  }
}

.image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.image img {
  width: 80%;
  height: 500px;
  object-fit: cover;
  display: block;
  padding: 50px;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-weight: 300;
  font-size: 2rem;
}

.date {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 10px 0;
}

hr {
  width: 30%;
  border: 0;
  height: 1px;
  background: #ccc;
  margin: 20px auto;
}

@media (min-width: 800px) {
  .body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  .image,
  .content {
    width: 50%;
  }

  .image img {
    width: 100%;
    padding: 0;
    height: 100vh;
  }
}

@media (min-width: 1200px) {
  .text {
    width: 65%;
  }
}
