@import url("/assets/css/fonts.css");
:root {
  --text-black-100: #333333;
  --highlight-orange: rgba(239, 153, 75, 0.6);
  --highlight-green: rgba(156, 174, 124, 0.6);
  --text-decoration-orange: rgba(229, 136, 59, 0.95);
  --text-decoration-green: rgb(171 185 145);
  --beige: #eeedeb;
}

* {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

::selection {
  background: var(--highlight-green); /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: var(--highlight-green); /* Gecko Browsers */
}

body {
  margin: 5rem 10rem 0 10rem;
  height: 93vh;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 1200px) {
  body {
    margin: 3rem 6rem;
  }
}

@media only screen and (max-width: 930px) {
  body {
    margin: 2rem 4rem;
  }
}

@media only screen and (max-width: 640px) {
  body {
    margin: 2rem;
  }
}


/* GENERAL TEXT STYLES */

h1,
h2,
h3 {
  font-family: 'MerithHandwriting', sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 300;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

h2 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

p,
a {
  font-family: 'proxima-nova', Montserrat, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 2rem;
  color: var(--text-black-100);
}


/* NAVIGATION */

.navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.navigation a {
  font-family: 'MerithHandwriting', sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2rem;
  text-decoration: none;
}

.navigation a:hover {
  color: var(--text-decoration-green);
}

a.--active {
  text-decoration-line: underline;
  text-decoration-color: var(--text-decoration-green);
  text-decoration-thickness: 2px;
}

.navigation a logo {
  height: 3.5rem;
  width: auto;
  margin-right: 2rem;
}

nav a:not(:last-child) {
  margin-right: 3rem;
}

@media only screen and (max-width: 870px) {
  .navigation {
    flex-direction: column;
    align-items: center;
  }
  nav a:not(:last-child) {
    margin-right: 1.5rem;
  }
}


/* GENERAL CONTENT AREA */

.content {
  display: flex;
  flex-direction: column;
  color: var(--text-black-100);
}


/* FOOTER */

footer {
  margin-top: auto;
  flex-direction: column;
  z-index: 2;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  width: 100%;
  padding: 3rem 0;
}

.footer a,
#copyright {
  font-weight: 600;
}

.footer a {
  text-decoration-line: underline;
  text-decoration-color: var(--text-decoration-green);
  text-decoration-thickness: 2px;
  font-size: 16px;
}

#copyright {
  font-size: 16px;
}

@media only screen and (max-width: 800px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 0 0;
  }
}

/* 404 Page */

.content--404 {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.content--404:before {
  content: "";
  background-image: url("../img/merith-wannewitz-photography-03.jpg");
  position: absolute;
  z-index: -3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .3;
}

.content--404 h1{
  z-index:2;
  opacity: 1;
  font-size: 20rem;
}

.content--404 p{
  width: 40rem;
  font-size: 3rem;
  margin-left: 5rem;
  font-weight: 600;
}

@media only screen and (max-width: 640px) {
  .content--404 {
    flex-direction: column;
    align-items: center;
  }

  .content--404 p{
    width: 100%;
    font-size: 3rem;
    margin-left: 5rem;
  }
}