/* Animates and styles dropping navigation bar */
.nav-container {
  width: 100%;
  background-color: #4ED7F1;
  padding: 1px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
h1 {
  margin-top: 10vh;
}
/* Defines margins and text alignment for the navigation bar */
.nav-container nav {
  margin: 5px;
  text-align: center;
}

/* Styles unhovered navigation links */
.nav-container nav a {
  display: inline-block;
  margin: 0 1em;
  text-decoration: none;
  color: rgb(231, 139, 202);
  font-size: 2.5em;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Transitions navigation links to different color when hovered */
nav a:hover {
  color: rgb(217, 67, 197);
  transform: scale(1.1);
}

body { 
  font-family: 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

@media screen and (max-width: 480px) {
  .nav-container nav a {
      font-size: 1.5em;
  }
}