body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url("../images/background.png") no-repeat center center fixed;
  background-size: cover;
  font-family: "Poppins", sans-serif;
  color: white;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 800px;
}

.lang-links {
  margin-top: 15px;
  font-size: 0.95rem;
}

.lang-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.3s;
}

.lang-links a:hover {
  color: #e63946;
}