body {
  width: 100vw;
  height: 100vh;
  color: white;
  font-family: Arial;
}

#global {
  background-color: #171717;
  width: 100%;
  height: 100%;
}

#post-grid {
  padding: 130px 50px 50px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 50px;
}

.post {
  cursor: pointer;
  background-color: #2e2e2e;
  padding: 30px;
}

.post-title {
  color: #c2c2c2;
  margin-bottom: 20px;
}

.post-description {
  color: #8e8e8e;
}

#footer {
  font-size: 28px;
  color: #787878;
  display: flex;
  flex-direction: column;
  padding: 5vw;
  gap: 50px;
  background-color: #2e2e2e;
  border-top: 1px solid #444;

  margin-top: 200px;
}

#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;
}

#footer a {
  color: rgb(122, 122, 122);
  text-decoration: none;
  font-weight: normal;

  display: block;
}

#footer a:hover {
  color: #d1d1d1;

  text-decoration: underline;
}

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

.list-option:hover {
  cursor: pointer;
}