*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  font-family: "Assistant", sans-serif;
  margin: 0;
}

nav {
  box-sizing: border-box;
  width: 100%;
  height: 95px;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;

  top: 0;
  padding: 130px 70px;
  
  z-index: 10;
}

nav li {
  font-weight: bold;
  display: inline;
  padding: 0px 20px;
  width: 90%;
  flex-grow: 5;
  color: black;
}

nav a {
  color: black;
  font-size: 30px;
  margin-left: 50px;
}

header {
  text-align: center;
}

main {
  position: static;
  width: 90%;
  margin: 10px auto;
  margin-bottom: 75px;
}

h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}

h3 {
  font-style: italic;
  font-weight: lighter;
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.preview p {
  font-size: 24px;
}

.previewWide p {
  font-size: 24px;
}

.preview {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.previewWide {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.previewImageContainer {
  height: 200;
  width: 45%;
}

.previewImageContainerWide {
  height: 400;
  width: 100%;
}

.fullImageView {
  object-fit: cover;
  width: 100%;
}

.fullImageViewPixel {
  object-fit: cover;
  width: 100%;
  image-rendering: pixelated;
}

.previewContent {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.previewContentWide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process {
  width: 70%;
  margin: 100px auto;
}

.gridDisplay {
  margin-top: 50px;
}

.row {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 50%;
  max-width: 50%;
  padding: 0 5px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.column video {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

a {
  text-decoration: none;
  color: red;
}
  
a:hover {
  color: orange;
}
  
footer {
  height: 120px;
  width: 100%;
  padding: 25px;
  position: static;
  bottom: 0;
  background-color: black;
  color: white;
}

footer p {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}