a {
  text-decoration: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f0f2f5;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.title {
  font-size: 2.8em;
  color: #2e2f42;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.02em;
}

.link-list {
  width: 100%;
  max-width: 650px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.link-item {
  border-bottom: 1px solid #e0e0e0;
}

.link-item:last-child {
  border-bottom: none;
}

.link {
  display: block;
  padding: 22px 30px;
  text-decoration: none;
  color: #4e75ff;
  font-size: 1.3em;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.link:hover {
  background-color: #e6f0ff;
  color: #2c58e0;
  transform: translateX(5px);
}

.link:active {
  background-color: #d0e0f5;
  transform: translateX(2px);
}
