/* styles.css */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-image: url(background.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    font-family: "Roboto Mono", monospace;
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
  }
  
  h2 {
    font-family: "Roboto Mono", monospace;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
  }
