.body {
  margin: 0;
}

/*    HEADER / NAVBAR    */
.splash-page {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 5%;

  font-size: 16px;
  letter-spacing: 0.1em;
}

.logo {
  text-transform: uppercase;
  font-size: 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  text-transform: lowercase;
}

.nav-button {
  padding: 0px 15px;
}

.nav-button, a {
  text-decoration: none;
  color: black;
  transition: all 0.25s ease 0s;
}

.nav-button, a:hover {
  /* text-decoration: underline;   Why doesn't this work? */
  color: #c445e4;
}

/*    INNER    */
.inner {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

/*    ABOUT    */
.summary {
  color: white;
  background-image: linear-gradient(144deg, #6da8d4, #c445e4);
  /* background-image: linear-gradient(144deg, #ff4128, #ffeb38); */

  padding: 8%;
  padding-left: 8%;
  padding-right: 33%;
  
  display: flex;
  flex-flow: column;
  height: 100%;
}

.headline {
  font-size: 70px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: lighter;
}

.summary-text {
  font-weight: lighter;
  font-size: 40px;
}

.scroll-text {
  font-size: 20px;
}

.down-arrow {
  color: white;
}

/*    PORTFOLIO    */
.portfolio {
  color: black;
}

.proj-row {
  display: flex;
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid #c445e4;
}

.proj-left {
  width: 50%;
  padding-left: 0;
  padding-right: 0;
  border-right: 1px solid #c445e4;
}

.proj-right {
  width: 50%;
  padding-left: 0;
  padding-right: 0;
}

.proj-desc {
  padding: 20px;
  justify-content: space-between;
}

.proj-name {
  font-weight: lighter;
}

.proj-summary {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proj-images {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}

.proj-img {
  padding: 15px;
  width: 30%;
  height: auto;
}

/*    CONTACT    */
.contact {
  display: flex;
  justify-content: center;

  width: 100vw;
  margin-left: 0;
  margin-right: 0;

  padding-top: 20px;
  padding-bottom: 20px;

  border-top: 1px solid #c445e4;
}

.contact-links {
  text-transform: lowercase;
  letter-spacing: 0.1em;
}