nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 20%;
  padding-top: 40px;
  background-color: rgb(127, 226, 18);
}

nav h1 {
  color: rgb(255, 255, 255);
  margin-bottom: 28px;
}
nav h1 a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-bottom: 1px solid rgb(255, 255, 255);
}
nav hgroup h2 {
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 30px;
}

#menuIcon {
  display: none;
  width: 39px;
  height: 39px;
  cursor: pointer;
}

#menuIcon hr {
  width: 100%;
  height: 2px;
  margin-bottom: 11px;
  margin-top: 0;
  background-color: rgb(255, 255, 255);
}

nav ul {
  display: flex;
  color: rgb(255, 255, 255);
  width: 50%;
  justify-content: space-around;
  font-size: 1.4rem;
  margin-bottom: 40px;
}

nav #phoneMenu {
  display: none;
}

nav ul a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

nav ul a:hover {
  text-decoration: none;
  border-bottom: 1px solid rgb(255, 255, 255);
}

#indexSection {
  padding: 100px 20%;
  padding-bottom: 200px;
  background-color: rgb(127, 226, 18);
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  line-height: 25px;
  background-image: url("../images/big-image.jpg");
  background-size: cover;
  background-position: 0 75%;
  background-repeat: no-repeat;
}

#indexSection h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 60px;
  text-align: left;
  margin: 0;
}

a.bigButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 50px;
  margin-top: 15px;
  padding-bottom: 4px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  text-decoration: none;
  color: rgb(127, 226, 18);
  font-weight: 900;
  font-size: 1.5rem;
  text-align: center;
  box-shadow: -3px 5px rgba(0, 0, 0, 0.2);
}

a.bigButton:hover {
  box-shadow: -5px 7px rgba(0, 0, 0, 0.2);
  transform: translate(0, 2px);
}/*# sourceMappingURL=navigation.css.map */