
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.links-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-list a {
  color: #2962ff;
  text-decoration: none;
  padding: 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.links-list a:hover {
  background-color: #f5f5f5;
  color: #1565c0;
}
