a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
  color: black;
}

h1 {
  text-align: center;
}

li {
  padding: 20px;
}

.center {
  text-align: center;
}

body {
  font-size: 24px;
}

span {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: white;
}

.bg_gradient_rounded {
  border-radius: 20px;
  font-size: 24px;
  line-height: 4em;
  background-image: linear-gradient(90deg, LimeGreen 0%, ForestGreen 100%);
}


.bg_gradient_rounded>span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1em;
  /*set line height back to normal*/
}

.navigation {
  text-align: center;
}

.navigation ul {
  font: bold 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.navigation li {
  display: inline-block;
}

.navigation a {
  background: #395870;
  background: linear-gradient(LimeGreen 0%, ForestGreen 100%);
  border-right: 1px solid rgba(0, 0, 0, .3);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
}

.navigation a:hover {
  background: #314b60;
  box-shadow: inset 0 0 10px 1px rgba(0, 0, 0, .3);
}

.navigation li:first-child a {
  border-radius: 4px 0 0 4px;
}

.navigation li:last-child a {
  border-right: 0;
  border-radius: 0 4px 4px 0;
}

.link-list {
  list-style-type: none;
  padding-top: 0;
  padding-left: 0;

  a {
    display: block;
    padding: 2rem;
    font-size: 3rem;
    background-color: #4c7c4c;
    border: 1px solid #4c7c4c;

    &:hover {
      color: #4c7c4c;
      background-color: #FFFFFF;
      border-color: #4c7c4c;
    }
  }
}