/* Scroll bar stylings */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #777;
}

footer {
  padding: 10px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: end;
  position: relative;
  bottom: 0;
  margin: 50px 0 10px 0;
  border-top: var(--content-bullets) 1px solid;
  .button-container {
    display: flex;
    margin: 10px 0;
  }
  a button {
    background-color: var(--content-bullets);
    color: var(--content-headings);
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
  }
  a button:hover {
    background-color: var(--content-hr);
  }
}
