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

.language-selection {
  text-align: center;
}

.language-selection h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.flags a {
  display: inline-block;
  margin: 0 1rem;
}

.flags img {
  width: 100px;
  height: auto;
  transition: transform 0.3s;
}

.flags img:hover {
  transform: scale(1.1);
}
