/*Header*/
header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

header a {
  font-size: 3rem;
}
/*Body*/
#main_index {
  margin: 0 2vw;
}

#video {
  max-width: 42%;
}
.main-image {
  display: flex;
  justify-content: space-around;
}

.main-navigation {
  display: flex;
  justify-content: space-evenly;
  font-size: 2vw;
  flex-direction: column;
  padding: 1% 0;
  align-items: center;
}

.main-navigation a {
  font-size: 2rem;
  font-family: var(--logo-font);
}
.main-navigation a:hover {
  text-shadow: 1px 1px 20px var(--accent-colour);
}
footer {
  text-align: center;
}
footer p {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .main-navigation {
    flex-direction: row;
  }
}

@media screen and (min-width: 1101px) {
  header {
    top: 0;
    left: 0;
    width: 15vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: fixed;
  }
  header nav {
    display: flex;
    flex-direction: column;
    padding: 10% 4%;
  }
  .main-image img {
    max-width: 40%;
  }
  .main-image {
    display: flex;
    justify-content: center;
    padding-top: 3%;
    margin-left: 11rem;
  }
  .main-navigation {
    flex-direction: row;
  }
}
