body {
  margin: 0;
}

p,
h1,
h2,
h3,
label {
  margin: 0;
}

a {
  color: #3a87fe;
  text-decoration: none;
  font-weight: 700;
}

.divider {
  height: 1px;
  background-color: #444;
}

#header {
  background-color: #222;
  border-bottom: 1px solid #444;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
}

#home-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

#home-btn:hover {
  color: #a3a3a3;
}

#logo {
  height: 100%;
  object-fit: contain;
}

#post-footer {
  font-size: 28px;
  color: #787878;
  display: flex;
  flex-direction: column;
  padding: 5vw;
  gap: 50px;
  background-color: #2e2e2e;
}

#footer-lists {
  display: flex;
  flex-direction: row;
}

.list-title {
  color: #9c9c9c;
  margin: 30px 0 10px 0;
}

#left-list {
  flex: 1;
}

#right-list {
  flex: 1;
}

#copyright-bar {
  font-size: 20px;
  color: #555;
}

.list-option {
  margin: 0 0 15px 0;
}

.list-option:hover {
  color: #d1d1d1;
  cursor: pointer;
  text-decoration: underline;
}