body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.5rem;
  color: #7e00ff;
  text-shadow: 0 0 10px #7e00ff;
}

.links-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
}

.link-card {
  background-color: #1f1f1f;
  border: 2px solid #7e00ff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px #c084fc;
}

a {
  text-decoration: none;
  color: #c084fc;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

footer {
  margin-top: 40px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: #c084fc;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #7e00ff;
}

textarea {
  height: 260px;
  width: 900px;
}
