body {
  background-color: black;
    }
h1 {
  color: #8B0000;
    font-size: 45px;
}
h2{
  color: #FF8C00;
    font-size: 30px;
}
p {
  color: #FF0000;
    font-size: 20px;
}
h3 {
  color: #02fa1f;
    font-size: 25px;
}
h4 {
  color: #bfbfbf;
}
h6 {
    color: #77ff6f
        }
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
    }
   .center-text{
   text-align: center;
   width: 400px;
   margin: auto;
}
 
 .animated-title{
      display: block;
  margin-left: auto;
  margin-right: auto;
    }
    .animated-title:hover{
      animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
    
  
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

 .navigation-buttons {
  padding: 40px 0px;
  position: relative;
  text-align: center;
  width: 100%;
}

.navigation-buttons a {
  background: #0000e3;
  border: 1px #0000b3;
  border-radius: 3px;
  color: #ffff23;
  display: inline-block;
  padding: 8px;
  text-decoration: none;
}

.navigation-buttons a:hover {
  background: #000053;
  border: 1px solid #00006b;
  color: #ffff23;
}