@media (max-width: 700px) {
  body {
    min-width: 100vw;
  }

body {
  min-height: 100vh;
  max-width: 100vw;
  background-color: rgb(82, 68, 56);
}

.parent-tile {
  display: flex;
  justify-content: space-evenly;
}

.project-tile a {
  color: rgb(255, 255, 255);
  font-style: italic;
  text-decoration: none;
}

.project-tile a:hover {
  cursor: pointer;
}

.project-tile {
  padding-top: 10px;
  min-width: 32vw;
}

.project-tile p {
  font-size: 1.25rem;
  color: rgb(255, 230, 215);
}

.project-tile h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.project-tile iframe {
  min-width: 30vw;
  min-height: 60vh;
  border: 10px double rgba(0, 0, 0, 0.375);
}

.project-nav ul {
  font-size: 1.2rem;
  padding-left: 20px;
  list-style-type: circle;
  color: #fff6f0;
}