/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Header */
.title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button container */
.container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Buttons (styled links) */
.btn {
  width: 260px;
  text-align: center;
  padding: 14px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.35);
}
