/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.coat-of-arms {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #666666;
}

.language-switcher {
  font-size: 0.9rem;
  color: #999999;
}

.language-link {
  text-decoration: none;
  color: #333333;
  margin: 0 5px;
}

.language-link.active {
  font-weight: bold;
  color: #000000;
}