
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}


body {
  background: #443636;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 700px;
}


h1 {
  margin-bottom: 20px;
  color: #333;
}


.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}


.card {
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  background: #000000;
  transition: transform 0.2s, background 0.2s;
  color: #cdb2b2;
}

.card:hover {
  background: #cdc9bf;
  transform: translateY(-5px);
  color: black;
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.card p {
  font-size: 1rem;
}


footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #555;
}
