header,
footer {
  display: flex;
  align-items: center;
  background-color: #151419;
  color: #fff;
  margin: 0;
  padding: 10px;
}

header {
  justify-content: space-between;
  top: 0;
}

footer {
  justify-content: center;
  bottom: 0;
}

#left {
  left: 0;
}

#right {
  right: 0;
}

.logo {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.rightlinks,
.footerlinks {
  padding: 7px;
  border: none;
  background-color: #EAEBE6;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  transition: background-color 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
}

.rightlinks:hover,
.footerlinks:hover {
  background-color: #a3a3a3;
}


