body {
  margin: 0;
  background-color: #457b9d;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: #f1faee;
}

.header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d3557;
}

.header__img {
  width: 100px;
  margin-top: 10px;
  margin-left: 20px;
}

.header__menu {
  margin-right: 30px;
}
.header__menu ul {
  display: none;
  list-style: none;
  padding: 0px;
  position: absolute;
  width: 100px;
  text-align: right;
  margin: 0px 0px 0px -14px;
}
.header__menu:hover ul,
ul:hover {
  display: block;
}
.header__menu li {
  margin: 10px 0px;
}

.header__menu li a {
  color: #f1faee;
  text-decoration: none;
}
.header__menu li a:hover {
  text-decoration: underline;
}
.header__menu--profile {
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.header__menu--profile img {
  margin-right: 8px;
  width: 40px;
}
.header__menu--profile p {
  margin: 0px;
  color: #f1faee;
}

.general {
  background: linear-gradient(#1d3557, #457b9d);
}
