* {
   padding: 0;
   margin: 0;
}

.menu ul {
   list-style: none;

}
h1 {
   text-align: center;
   background-color: #013b53;
   color: white;
   margin: 0;
   border-bottom: 2px solid black;
  
}
.menu {
   background-color: #013b53;
   color: white;
}
.menu ul {
   display: flex;
   padding: 10px;
   justify-content: space-around;
   margin: 0;
}
.menu ul li a {
   color: white;
   font-size: 20px;
   text-decoration: none;
   font-weight: bold;
}
article {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   flex-direction: column;
   text-align: center;
   font-size: 25px;
}
.content h2 {
   animation: none;
}

h2 {
   animation: Jump 1s infinite;
}
@keyframes Jump {
   0% {
      transform: translateY(0);
   }
   50% {
      transform: translateY(20px);
   }
   100% {
      transform: translateY(0);
   }
}
.NavMenu {
   display: flex;
   justify-content: center;
   background-color: rgb(255, 187, 0);
   color: white;
   width: 100%;
   height: 10vh;
}

/* JS Menu Opgaver */
.NavMenuUl {
   display: flex;
   justify-content: center;
   align-items: center;
   list-style: none;
   width: 100%;
   margin: 0;
   padding: 0;
}
.NavMenuUl li a {
   text-decoration: none;
   color: white;
   font-size: 20px;
   font-weight: bold;
  
}
.NavMenuUl li {
   border-right: 2px solid white;
   border-left: 2px solid white;
   padding-right: 20px;
   padding-left: 20px;
   height: 100%;
   width: 9%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.NavMenuUl li:last-child {
   border-right: 3.5px solid white;
}
.NavMenuUl li:first-child {
   border-left: 3.5px solid white;
}