h1 {
    font-size: 70px;
    color: #393432;
}

h2 {
    font-size: 40px;
    color: #393432
}

h3 {
    color: #393432
}

p {
    font-size: 18px;
    color: #393432;
    line-height: 1.6;
}

a {
    color: teal;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    color: yellow;
}

footer {
    width: 100%;
    text-align: center;
}

body {
    background: goldenrod;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    margin: 0;
    padding: 0;
}

.site-nav {
    font-size: 25px;
    padding: 50px 80px;
}

.landing-page {
  display: flex;
  min-height: 90vh; /* viewport height */
}

.landing-page nav {
    font-size: 40px;
}

.left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: flex-end;
  padding: 100px 20px 0px;
}

.left-column nav {
    text-align: right;
    align-items: flex-end;
}

.right-column {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.right-column img {
    filter: invert(100%);
}

.wrapper {
    margin: 0px auto 150px;
    max-width: 700px;
}