@font-face {
  font-family: ComicBook;
  src: url(Comic_Book.otf) format('opentype');
}

@keyframes scale-up-center-normal {0% { transform: scale(0.5); } 100% { transform: scale(1);} }

.scale-up-center-normal { 

    animation: scale-up-center-normal 1s linear 0s 1 normal forwards;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation-name: scale-up-center-normal;
  animation-duration: 5s;
}

h1 {
  text-align: center;
  font-size: 30px;
  color: white;
  font-family: ComicBook;
}

p {
  text-align: center;
  color: white;
  font-family: arial;
}

a {
  color: red;
}

body {
  background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -0.5px;
}

footer {
  color: white;
}

.marquee {
                height: 50px;
                overflow: hidden;
                position: relative;
}

.marquee h1 {
  position: absolute;
  width: 100%;
   height: 100%;
  margin: 0;
  color: white;
  line-height: 50px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(50%);
 -moz-animation: scroll-left 12s linear infinite;
  -webkit-animation: scroll-left 12s linear infinite;
}

            @-moz-keyframes scroll-left {
                0% {
                    -moz-transform: translateX(100%);
                }
                100% {
                    -moz-transform: translateX(-100%);
                }
            }
            
            @-webkit-keyframes scroll-left {
                0% {
                    -webkit-transform: translateX(100%);
                }
                100% {
                    -webkit-transform: translateX(-100%);
                }
            }
            
            @keyframes scroll-left {
                0% {
                    -moz-transform: translateX(100%);
                    -webkit-transform: translateX(100%);
                    transform: translateX(100%);
                }
                100% {
                    -moz-transform: translateX(-100%);
                    -webkit-transform: translateX(-100%);
                    transform: translateX(-100%);
                }
            }

