body {
    font-family: Arial, sans-serif;
    padding: 30px;
    background-color: #f0f2f5;
  }
  
  h1, h2 {
    text-align: center;
    color: #333;
  }
  
  #searchInput {
    display: block;
    margin: 20px auto 40px;
    padding: 10px;
    width: 80%;
    max-width: 500px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
  }
  
  .resource-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .card {
    background-color: #ffffff;
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    font-size: 18px;
  }
  
  .card p {
    color: #555;
    margin-top: 10px;
    font-size: 14px;
  }
  button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 14px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }  