.nav {
  display: flex;
  justify-content: space-between;
  height: 70px;
  background-color: #212225;
}

.logo {
	display: flex;
	align-items: center;
	padding-left: 20px;
}
.logo img {
	height: 30px;
	
}

.topnav {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 0px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  color: red;
}


.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.full-background-menu-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffd600;
	color: black;
	margin-right: 20px;
	height: calc(100% - 25px);
	border-radius: 2px;
	width: 150px;
}

.full-background-menu-item a{
color: black;
	padding: 0;
}