body {
    margin: 0;
    padding: 0;
    font-family: 'Arial Narrow Bold', sans-serif;
    background-image: url('spaceships/spacebackground.jpg'); /* Change 'background.jpg' to the path of your background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  .container {
    max-width: 600px;
    margin: 100px auto;
    background-color: rgba(255, 255, 255, 0.8); /* Background color for the form container */
    padding: 20px;
    border-radius: 10px;
  }
  
  .container h1 {
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 96.5%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  textarea {
    resize: vertical;
  }
  
  button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Change the button color as needed */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3; /* Change the button color on hover as needed */
  }

  .navbar 
  {
      overflow: hidden;
      top: 0;
      left: 0;
      position: fixed;
  }
    
    .navbar a 
    {
      float: left;
      display: block;
      padding: 14px 20px;
      text-decoration: none;
      color: white;
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    }
    
    .navbar a:hover 
    {
      background-color: #ddd;
      color: black;
    }
    
    /* Clear floats after the navbar */
    .navbar:after 
    {
      content: "";
      display: table;
      clear: both;
    }