/* Reset default margin and padding */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  /* Set background color and text styles */
  body {
    background-color: #fefef0;
    font-family: Arial, sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  /* Header styles */
  .header {
    font-size: 60px;
    margin-bottom: 40px;
    margin-top: 100px;
  }
  
  /* Job styles */
  .job-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 20px;
    justify-items: center;
    margin-top: 20px;
  }
  
  .job {
    text-align: center;
  }
  
  .job-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .apply-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #8e4806;
    color: #fefef0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .apply-btn:hover {
    background-color: #8e4806;
    opacity: 0.8;
  }
  