body {
  background-image: url("athhh.jpg");
    align-content: center;
}
/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
  }
  
  /* Setting box-sizing to border-box for easier layout */
  *,
  *:before,
  *:after {
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    font-family: Arial, sans-serif;
    margin: 120px;
  }
  
  /* Header styles */
  h1 {
    margin-top: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Form styles */
  form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
  }
  
  select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Additional styles for restaurant list */
  #restaurantList {
    margin-bottom: 20px;
  }

  .restaurant {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
  }

  .restaurant h2 {
    margin-top: 0;
    color: #333;
  }

  .restaurant p {
    margin: 5px 0;
  }

  .restaurant ul {
    margin: 5px 0;
    padding-left: 20px;
  }

  .restaurant ul li {
    list-style-type: none;
  }

  .restaurant a {
    color: #007bff;
    text-decoration: none;
  }

  .restaurant a:hover {
    text-decoration: underline;
  }
  
  /* Media query for responsiveness */
  @media (max-width: 600px) {
    form {
      max-width: 90%;
    }
  }
  
  #restaurantForm {
    max-width: 800px; /* Set the maximum width of the form */
    margin: 0 auto; /* Center the form horizontally */
  }
  
  /* Adjust width of form elements */
  #restaurantForm label,
  #restaurantForm select {
    width: calc(50% - 5px); /* Make labels and selects fill half of the available width with some spacing */
    margin-bottom: 10px; /* Add some spacing between elements */
    display: inline-block; /* Display elements inline */
    vertical-align: top; /* Align elements to the top */
    box-sizing: border-box; /* Include padding and border in the width */
  }

  /* Adjust width of checkboxes */
  #restaurantForm input[type="checkbox"] {
    width: auto; /* Reset the width for checkboxes */
    display: inline-block; /* Display checkboxes inline */
    vertical-align: top; /* Align checkboxes to the top */
    margin-right: 10px; /* Add some spacing between checkboxes */
  }

  /* Adjust width of submit button */
  #restaurantForm button[type="submit"] {
    width: 100%; /* Make the button fill the available width */
  }
  