 /* Basic styling for your SMP website */

 h1 {
    font-family: 'Press Start 2P', monospace;
  }
  
  body {
    background: #1e1e2f;
    color: #e2e2f0;
    margin: 0;
    padding: 0;
  }
  
  
  p {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 150;
    font-style: normal;
  }
  
  header {
    background: #2d2d44;
    padding: 2rem;
    text-align: center;
  }
  
  h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  strong {
    font-weight: 500!important; 
  }
    
  body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
  }
  
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background: #29293f;
    padding: 0.5rem;
    margin: 0;
  }
  
  nav li {
    margin: 0 1rem;
  }
  
  nav a {
    color: #a9cfff;
    text-decoration: none;
    font-weight: bold;
  }
  
  main {
    padding: 2rem;
  }
  
  section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #444;
    padding-bottom: 1rem;
  }
  
  footer {
    text-align: center;
    background: #2d2d44;
    padding: 1rem;
    font-size: 0.9rem;
  }