@import url(../global.css);

header {
  background: linear-gradient(126deg,rgba(30, 21, 66, 1) 0%, rgba(5, 0, 0, 1) 100%);
  user-select: none;
}

header .content {
  margin: 0 auto;
  padding: 10px;
}

header .content .sidebar {
  display: grid;
}

header .content .sidebar .sidetop {
  display: inline-flex;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
}

.sidetop .icons img {
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: all 0.3s;
  filter: invert(1);
  opacity: 0.7;
}

.sidetop .icons img:hover {
  opacity: 0.5;
}

.sidetop .logo img {
  height: 50px;
  width: 110px;
  cursor: pointer;
}

header .content .sidebar .sidebottom {
  padding: 10px;
}

header .content .sidebar .sidebottom .links {
  display: grid;
}

header .content .sidebar .sidebottom .links ul, li {
  display: inline-flex;
  list-style: none;
  justify-content: space-evenly;
}

.sidebottom .links ul li a {
  text-decoration: none;
  color: var(--gray1);
  opacity: 0.7;
  font-size: var(--fs-body);
}

.sidebottom .links ul li a:hover {
  opacity: 0.7;
  transition: all 0.2s;
}