body {
  font-family: 'Roboto', sans-serif;
  display: grid;
  background-color: #272727;
  color: white;
}

.policy {
  justify-self: center;
  max-width: 1000px;
}

a {
  color: white;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #808080 #272727;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff00;
}

*::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 10px;
  border: 5px solid #272727;
}