/* Add your own color scheme, sizes, and fonts */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
  }
  
  header {
    background-image: url('frontbackground.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 500px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 3em;
    margin: 0;
  }
  
  .hero p {
    font-size: 1.5em;
  }
  
  .btn {
    display: inline-block;
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 15px 25px;
    margin-top: 25px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  /* Add responsive design and other styles as needed */
  