body {
  font-family: 'Chivo Mono', monospace;
  color: white;
  background-color: #3a3b3c;
  min-height: calc(100% - 20px);
  margin: 0;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

textarea::placeholder,
input::placeholder {
  font-family: 'Chivo Mono', monospace;
  color: #3a3b3c;
  font-size: 12px;
}


.page {
  /* height: 80vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: auto 0px;
}

#main {
  border: 10px solid white;
  margin: 30px;
  justify-content: center;
  height: 60vh;
}

.rownav {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: fit-content;
  justify-content: space-between;
}

.nav {
  height: fit-content;
  margin: 30px;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
}

.nav:hover {
  opacity: 0.5;
}

.row {
  display: flex;
  flex-direction: row;
  height: fit-content;
  justify-content: space-between;
}


@media only screen and (max-width: 800px) {
  .row {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  h3 {
    font-size: 1rem;
  }

  h1, h3 {
    overflow: wrap;
  }

  .project-img {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .desktop-spacer {
    display: none;
  }
  
  .page {
    padding: auto 10px;
    box-sizing: border-box;
  }
  
  #gallery-photo {
    width: 90vw;
  }
  
  .parent-window {
    width: 90vw;
  }

}

.column {
  display: flex;
  flex-direction: column;
  padding: 5vh 2vw;
  align-items: center;
}

li {
  margin: 10px;
}

.title:hover {
  text-decoration: underline;
}

input {
  border: 1px solid white;
  border-radius: 6px;
  padding: 5px;
  margin-bottom: 20px;
  width: 250px;
}

input:focus {
  outline: none;
}

textarea {
  border: 1px solid white;
  border-radius: 6px;
  padding: 5px;
  margin-bottom: 20px;
  resize: none;
  width: 250px;
}

textarea:focus {
  outline: none;
}

button {
  background-color: white;
  color: #3a3b3c;
  border-radius: 10px;
  border: 1px solid white;
  cursor: pointer;
  padding: 6px;
  font-family: 'Chivo Mono', monospace;
}

footer {
  background-color: #bbb;
  color: black;
  position: relative;
  height: 20px;
  margin-bottom: 0px;
}

p {
  padding: 0px 2vw;
}

#social_media {
  cursor: pointer;
  align-self: center;
  /* margin-left: 20px; */
  margin: 0px 10px;
}

.clean-link {
  color: #bbb;
  text-decoration: underline;
  cursor: pointer;
}

.control-button {
  height: 50px;
}

#gallery-photo {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
  width: 30vw;
  /* width: 300px; */
}

.parent-window {
  width: 60vw;
}

#one {
  background-color: green;
}

.row-one {
  background-color: orange;
}