.container {
    display: flex; /* Activates Flexbox layout */
    justify-content: space-between; /* Distributes space between columns */
    column-count: 2;
}

.column-1 {
    flex: 1; /* Allows columns to grow and fill available space equally */
}
.column-2 {
    flex: 2; /* Allows columns to grow and fill available space equally */
}

@media (max-width: 700px) {
    .container {
        flex-direction: column;
    }
}


h1 {
  color: darkslategrey;
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    font-weight: lighter;
}


h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

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


}
a:hover {
    color: darkslategray;
}
p {
  color: darkolivegreen;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 32px;   /* within paragraph */
  margin-bottom: 30px; /* between paragraphs */

}

body {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 10%;
  margin-left: 3%;
}
h3 {
      font-style: italic;

}

br  {
    margin-top: 30px;
    margin-bottom: 20px;
    }