
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

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

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.lang-button {
  text-decoration: none;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  transition: 0.3s;
}

.lang-button:hover {
  opacity: 0.9;
}
