.topnav a {
   /*float: left;*/
   color: hsl(0, 0%, 95%);
   text-align: center;
   padding: 14px 16px;
   text-decoration: none;
   font-size: 17px;
}
h1 {
   text-align: center;
   font-family: 'Squada One', cursive;
   font-size: 80px;
   color:hsl(0, 0%, 76%);
   background-color: rgb(34, 30, 30);
   border-radius: 1000px;
}
body  {
   /*background-color: #1b1f2b;*/
   background: rgb(0,48,170);
   background: linear-gradient(180deg, rgba(0,48,170,1) 0%, rgba(32,84,147,1) 20%, rgba(82,48,92,1) 56%, rgba(139,20,20,1) 99%);
   color: rgb(241, 249, 255);
   font-family: 'Roboto', sans-serif;
   /*text-shadow: 2px 2px 0px #414985;*/
   animation: 2s slide
}

@keyframes slide {
    from {
       margin-left: 50px;
    }

    to {
       margin-left: 0%;
    }
 }