/* Reset some default styles */
body, h2, p {
    margin: 0;
    padding: 0;
    height: 60px;
  }
  
  
  body {
   
       /* background: url('VS-image/4.jpg') no-repeat center center fixed;
      background-size: cover;  */
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  nav .logo a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
  
  
  .card-container {
    color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    padding: 10px;
  }
  
  .card {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card h2 {
    font-size: 1.5rem;
    margin: 10px;
  }
  
  .card p {
    font-size: 1rem;
    margin: 10px;
  }
  
  .card a {
    text-decoration: none;
    color: inherit;
  }
  
  .card a:hover {
    color: darkblue;
  }
  