body {
    margin: 0;
    padding: 0;
  }
  
  header {
    background: #e1e5f8;
    color: #fff;
    padding: 20px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
     background-color: #f1f1f1;
     color: #fff;
  }
  
  .hero-content {
    text-align: center;
  }
  
  h1 {
    font-size: 36px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: lightskyblue;
    border-radius: 10px;
    color: black;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #555;
  }
  