* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: Arial;
  background-color: #fff;
  padding: 50px;
}

.logo {
  text-align: center;
  color: #777;
  margin-bottom: 25px;
}

.button {
  border: 2px solid transparent;
  background: #003366;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 220px;
  margin: 0 auto;
}

.button:hover {
  background-color: #2980B9;
}

.button-txt {
  font-size: 12px;
  color: #444;
  display: block;
  margin-top: 6px;
  margin-bottom: 12px;
}

.contact-txt {
  font-size: 12px;
  text-align: center;
  color: #444;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

[lang="en-US"] {
  background-color: #FFF;
  padding: 20px;
  border: 2px solid #5D6063;
  border-radius: 5px;
  margin: 20px auto;
  width: 300px;
  text-align: center;
}

[lang="no-NB"] {
  background-color: #FFF;
  padding: 20px;
  border: 2px solid #5D6063;
  border-radius: 5px;
  margin: 20px auto;
  width: 300px;
  text-align: center;
}

div[lang] {
  display: none;
}

div[lang].lang-match {
  display: block;
}