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

body {
  background-color: black;
  color: #00ffcc;
  font-family: 'Courier New', Courier, monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

header h1 {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  font-size: 3rem;
  font-size: 75px;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.card {
  background-color: #111;
  border: 1px solid #00ffcc44;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #00ffcc33;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffcc;
  border-color: #00ffcc;
}

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

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

.card button {
  padding: 0.5rem 1rem;
  background-color: #00ffcc;
  color: #0d0d0d;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s ease;
}

.card button:hover {
  background-color: #00ccb3;
}

main{
  margin-top: -60px ;
  z-index: 99;
  background-color: black;
  width: 100%;
}