body {
  margin: 0;
}

@media only screen and (max-width: 850px) {
	.menuText {
        display: none;
	}
}
@media only screen and (min-width: 850px) {
	.menuText {
		display: inline;
	}
}

#navbar {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  background-color: #000b20;
}

#navbar a {
  float: left;
  display: block;
  color: #E8FBFF;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  transition: 1s;
}

#navbar a:hover {
  background-color: #0057ffff;
  font-size: 22px;
  transition: 1s;
}

#lang {
	position: absolute;
	top: 15px;
	right: 10px;
	color: white;
}

.flag {
	position: relative;
	top: 5px;
    transition: 1s;
	filter: grayscale(0);
}

.flag:hover {
	filter: grayscale(0.6);
}

.language {
	text-decoration: none;
	color: #fff;
}

.language:hover {
	text-decoration: underline;
	color: #fff;
}