body {
  font-family: Arial, sans-serif;
  background: url("assets/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #333;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 10px;
}

.projects {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.btn.cards {
  background-color: #ff91c1;
}

.btn.cards:hover {
  background-color: #ff6ca6;
}

.btn.tables {
  background-color: #6aa8ff;
}

.btn.tables:hover {
  background-color: #3e8cff;
}

footer {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 10px;
}
