@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i");
*{
  padding:0;
  margin:0;
  box-sizing:border-box;
}
body,html {
  width: 100%;
  height: 100%;
}
body{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size:62.5%;
}
@media only screen and (max-width: 75em)
{
  body
  {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em)
{
  body
  {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em)
{
  body
  {
    font-size: 75%;
  }
}
.header{
  position: relative;
  padding: 30px 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  background: #a4a4a4;
  padding: 15px;
  display:flex;
  justify-content: space-between;
}
.logo{
  max-width:250px;
}
ul,li{
  list-style-type: none;
  font-size:1.2rem;
  display:inline-block;
}
.header a{
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  padding:0 10px;
  text-decoration:none;
  font-size:1.2rem;
}
.menu{
  display:flex;
  align-items: center;
}
#language-picker-select{
  background: #a4a4a4;
  background: #a4a4a4;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 2em;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px;
}
#language-picker-select a{
  color: #fff;
  font-family: 'Open Sans';
  font-size: 2em;
  font-weight: 600;
}
.container{
  padding:20px;
  background-color:#fff;
  color:#111;
  font-size:1rem;
  font-weight:normal;
}

h1{
  font-weight:bold;
  font-size:2rem;
  padding-bottom:5px;
}
h2{
  font-size:1.5rem;
  font-weight:normal;
  padding-bottom:4px;
}
p{
  padding-bottom:10px;
}

footer{
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  background: #a4a4a4;
  color:#fff;
  text-align:center;
  padding: 15px;
  position:relative;
  bottom:0;
  margin-top:20px;
  width:100%;
}
@media screen and (max-width: 850px)
{
  .header{
    flex-direction: column;
    padding:5px 0px;
  }
  ul{
    width:100%;
  }
  li{
    text-align:center;
    font-size:.9rem;
  }
}
