/* 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: 'eurostile';
      src: url('eurostile-webfont.woff') format('truetype');
    }
    body {
      font-family: 'eurostile', arial;
      font-weight: normal;
      background: #000;  /* pure black background */
      color: white;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 1200px;
      width: 100%;
      margin: 60px auto;
      padding: 30px;
      background: #222;
      border: 1px solid #F250E4;
      text-align: center;
    }

    nav {
      background: #333;
      padding: 0px;
    }

    nav a {
      display: inline-block;
      margin: 10px;
      padding: 12px 20px;
      text-decoration: none;
      color: white;
      border-radius: 2px;
      transition: 0.3s;
      background: #F250E4;
      
    }
    nav a:hover {
      opacity: 0.8;
    }
    
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      background-image: repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 100%);
      background-size: 3px 3px;
    }

    a {
      color:#F250E4 ;
    }
    
      /* Make the page use flexbox layout */
  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  /* Let container take all free space */
  .container {
    flex: 1;  /* pushes footer to the bottom */
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    background: #222;
    border: 1px solid #F250E4;
    text-align: center;
  }
  
  /* Footer styling */
  footer {
    background: #111;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #F250E4;
    color: #bbb;
    font-size: 12px;
  }
    p {
  margin-bottom: 1em; /* Adds 1 unit of spacing after each paragraph */
  margin: 60px

    