
*{
  font-family: 'Abel', sans-serif;
}

body{
  padding: 0;
  margin: 0;
}

ul{
  margin-left: 0;
  padding-left: 0;
}

a{
  text-decoration: none;
}

h2{
  margin: 30px 0;
}

h3{
  color: #7DD43B;
}

p{
  font-size: 1.3em;
}

.centeredHome{
  text-align: center;
  animation-duration: 3s;
  animation-name: FadeIn;
}

.home h1{
  opacity: 1;
}

.home{
  text-align:center;
}

.centeredHome{
  margin-top: 2%;
}

.switchbutton{
  display: inline-block;
  margin: 25px;
}

.backToMenu{
  font-weight: bold;
  color:#7DD43B;
  position: absolute;
  left: 50px;
  top: 50px;
}

.startingBtn{
  display: inline-block;
  background-color: #7DD43B;
  color: white;
  text-decoration: none;
  margin: 50px;
  padding: 10px;
  border: 2px solid #7DD43B;
}


.startingBtn:hover{
  background-color: white;
  color:#7DD43B;
}

/* Navigation */

.leftMenu, .rightMenu{
  width: 50%;
  display: table-cell;
}

#menu{
  width: 25%;
  margin-left: auto;
  margin-right: auto;
}

nav ul li{
  list-style: none;
}

nav ul li a{
  font-size: 1.2em;
  font-weight:bold;
  text-decoration: none;
  color:#7DD43B;
}

nav ul li a:hover{
  border-bottom: 2px solid #7DD43B;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@media screen and (max-width: 1024px){
  #menu{
    width: 50%;
  }

@media screen and (max-width: 570px){
  .switchbutton{
    display: block;
  }

  .backToMenu{
    left: 5px;
    top: 5px;
  }

  #menu{
    width: 100%;
  }

}

}