* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000000c4;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #570000;
  color: white;
  padding: 2rem;
  font-family:Bahnschrift, Arial, sans-serif;
  text-align: center;
}

header h1 {
  margin-bottom: 0.5rem;
}

main {
  flex: 1;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);

.project-card:hover h2 {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.726);
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}