body {
  color: #0be321;
  overflow-y: auto;
  background-image: url("images/flesh.jpg");
  background-size: 15% 20%;
}

hr {
    border: none;
    height: 2px;
    background: #0be321;
}

a:link {
  color: #0b7d22;
}

a:visited {
  color: #0b7d22;
}

.screen-border {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: url("images/border.png") no-repeat;
  background-size: 100% 100%;

  pointer-events: none; /* allows clicks through it */
  z-index: 9999; /* stays on top */
}

.columns {
    display: grid;
    grid-template-columns: 1fr 2.6fr 1fr;
    gap: 8px;
    max-width: 1200px;
    padding: 0px;
    text-align: center;
    margin: 0 auto;
    margin-top: 4.5%;
    margin-bottom: 4.5%;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0 auto;
    width: 100%;
}

.item {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #0be321;
    background-image: url('textures/Marble1blue.png')
}

.scrollbox {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #0be321 transparent;
}

/* Chrome / Edge / Safari */
.scrollbox::-webkit-scrollbar {
    width: 8px;
}

.scrollbox::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbox::-webkit-scrollbar-thumb {
    background: #0be321;
    border-radius: 10px;
}

.scrollbox::-webkit-scrollbar-thumb:hover {
    background: #0be321;
}