.header {
  display: flex;
  flex-direction: row;
  padding: 5px;
  padding-left: 15px;
  justify-content: space-between;
  font-family: candara;
  background: rgba(55, 61, 73, 0.975);
  color: #F5F5F5;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: 0 0 1px 0 rgba(16, 16, 32, 0.25), 0 0 2px 0 rgba(0, 0, 0, 0.15);
  height: 3.75em;
  transition: top 0.25s ease-in-out;
  font-size: 0.9em;
  z-index: 10000;
  cursor: default;
}

.header h4 {
  margin: 0;
  padding: 0;
}

.header #IconAndList {
  display: flex;
}

#IconAndList img {
  border-radius: 55px;
  height: 50px;
  border: 2.6px solid #E3DAC9;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header ul {
  display: flex;
}

.header li {
  margin-right: 11px;
}

.header .navigation {
  align-self: flex-end;
  margin-left: 15px;
}

.socials {
  align-self: flex-end;
  padding-right: 20px;
}

.navigation a {
  color: inherit;
}

.socials a {
  color: inherit;
  font-size: 1.3rem;
  text-decoration: none;
}

.socials #TwitterLink:hover {
  color: #1da1f2;
}
.socials #GithubLink:hover {
  color: #4078c0;
}
.socials #LinkedInLink:hover {
  color: #0a66c2;
}

.logout-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
}

.logout-btn:hover {
  color: #ff6b6b;
}