body {
  background-color: #0b0c10;
  color: #33ffcc;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

header, footer {
  text-align: center;
  padding: 20px;
  background-color: #1f2833;
  border-bottom: 2px solid #66fcf1;
}

h1 {
  font-size: 2.5em;
  color: #ff00cc;
  text-shadow: 0 0 5px #ff00cc;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.site {
  background: linear-gradient(to right, #0b0c10, #1f2833);
  border: 1px solid #66fcf1;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 8px #45a29e;
}

.site:hover {
  transform: scale(1.03);
}

.site h2 {
  color: #ff00cc;
}

.site p {
  font-size: 0.9em;
  color: #c5c6c7;
}

.site a {
  color: #66fcf1;
  text-decoration: none;
  border-bottom: 1px dashed #66fcf1;
}

.site a:hover {
  color: #ff00cc;
  border-bottom: 1px dashed #ff00cc;
}
