/*!
 *   Web Page
 *   Author: Wenks
 */

 body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .container {
    flex: 1;
  }
  .card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 768px) {
    .col-md-4 {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  .badge-custom {
    background-color: #ff6f61;
    color: white;
    font-size: 0.8rem;
  }
  .rating-stars {
    color: #f9a825;
  }
  .logo {
    width: 150px;
    height: auto;
  }
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
  }
  footer a {
    color: #ffc107;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
  }