/* style.css */

body {
  font-family: 'Roboto', sans-serif;
  background-color: black;
  margin: 0;
  padding: 0;
  color: white;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  color: #ecec2b;
}

.subtitle {
  font-size: 1.1rem;
  color: yellow;
}

.card-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
   grid-gap: 10px;
  
}

.card {
  text-decoration: none;
  background: #803131;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  color: white;
  
}

.card:hover {
  background: #a7a7ee;
  transform: translateY(-4px);
  color: #620d0d;
 
}

.card h2 {
  margin-top: 0;
  font-size: 1.4rem;

  
}

.card p {
  font-size: 0.95rem;
  color: white;
  
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #999;
}
