/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: 'Akira';
  src: url('Fonts/Akira Expanded Demo.woff2') format('woff2'),
       url('Fonts/Akira Expanded Demo.woff') format('woff'),
       url('Fonts/Akira Expanded Demo.otf') format('opentype');
}
@font-face {
  font-family: 'Hack';
  src: url('Fonts/Hack-Regular.ttf') format('truetype');
}

.container {
  /* Sets a maximum width for your content area */
  max-width: 900px; 

  /* Centers the container block on the page */
  margin: 0 auto;

  /* Centers the text and images inside the container */
  text-align: center; 

  /* Adds some space around your content */
  padding: 20px;
}
h1{
  font-family: 'Akira', sans-serif;
  color: red;
}

body {
  background-color: black;
  color: red;
  font-family: 'Hack', sans-serif;
}