body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 40px;
  border: 2px solid #e0e0e0;
  max-width: 500px;
  width: 90%;
}

.title {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-link {
  display: block;
  padding: 15px 20px;
  background: white;
  color: #2196f3;
  text-decoration: none;
  border: 2px solid #2196f3;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
}

.page-link:hover {
  background: #2196f3;
  color: white;
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  .title {
    font-size: 24px;
  }

  .page-link {
    font-size: 16px;
    padding: 12px 15px;
  }
}
