* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-select {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.language-select img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.language-select h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.language-select p {
  font-size: 16px;
  margin-bottom: 30px;
}

.language-select div a {
  display: inline-block;
  margin: 10px 10px;
  padding: 12px 20px;
  background-color: #ffffff22;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
}

.language-select div a:hover {
  background-color: #ffffff44;
  transform: scale(1.05);
}

.flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.5rem;
  margin-right: 6px;
}

.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

