* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #f7f3f3;
    background-image: url("image/room3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 30px;
  }

  #homepage{
    width: 100vw;
    height: 85vh;
  }
  
  .tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 190px;
  }
  
  .title {
    font-size: 3rem;
    font-weight: bold;
    color: #504e4e;
    margin-bottom: 50px;
  }
  
  .predict-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #504e4e;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
  }
  
  .predict-btn:hover {
    background-color: #504e4e;
    color: #fff;
  }
  
  /* Rent Prediction Form Styles */
  .form-container form {
    background: #dbd8d8;
    padding: 40px;
    border-radius: 12px;
    width: 400px;
    margin: auto;
    box-shadow: 0 0 15px rgb(12, 12, 12);
    color: #504e4e;
  }
  
  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #504e4e;
  }
  
  .form-container input,
  .form-container select,
  .form-container button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  
  .form-container button {
    background-color: #504e4e;
    color: white;
    font-weight: bold;
    margin-top: 20px;
  }
  
  .result {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: green;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .title {
      font-size: 2.2rem;
      margin-top: 188px;
      margin-bottom: 170px;
    }
  
    .subtitle {
      font-size: 1rem;
    }
  
    .predict-btn {
      padding: 12px 30px;
      font-size: 0.9rem;
    }
  
    .tagline {
      font-size: 0.8rem;
      letter-spacing: 2px;
      margin-top: 80px;
    }
  
    .form-container form {
      width: 90%;
      padding: 20px;
    }
  }
  
