html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 960px;
  margin: 0 auto;
  color: #333;
  font-size: 0.9em;
  line-height: 1.2em;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  -webkit-font-feature-settings: "kern";
  letter-spacing: normal;
}
.nav-container {
  margin: 24px 24px 12px 24px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.logo {
  width: 206px;
  height: 72px;
  background: url('logo.png') no-repeat;
}
.lang {
  text-transform: uppercase;
  color: #7f7f7f;
  font-size: 1.2em;
  line-height: 72px;
  position: absolute;
  bottom: -15px;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.lang > a {
  text-decoration: none;
  color: #eeb111;
}
.lang > a:hover, a:focus, a:active {
  font-weight: 600;
}
.spacer {
  padding: 0 8px;
}
.container {
  border-top: 3px solid #eeb111;
  margin: 0 24px;
}
h2 {
  font-size: 2em;
  font-weight: 400;
  color: #414141;
  padding: 40px 0 10px 0;
  border-bottom: 1px solid #ccc;
}
p.message {
  margin: 36px 0;
}

@media only screen and (max-device-width : 480px) {
    .logo {
      width: 143px;
      height: 36px;
      background: url('logo_mobile.png') no-repeat;
    }
    .lang {
      bottom: -10px;
      line-height: 40px;
    }
  }
