:root {
  --bg: #292929;
  --content-bg:#444444;
  --primary-gradient: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(0, 6, 181, 1) 100%);
  --default-title: monospace;
  --default-content: monospace;
}
/*--------------------  UNIVERSAL --------------------- */

body {
  background-color: #292929;
  background-image: url('/media/bg.png');
  font-family: var(--default-content);
}

hr {
  border: 0;
  border-top: 1px solid #fff;
  margin: 10px 0;
}

/*--------------------  GRID --------------------- */


.container {
  display:grid;
  grid-template-columns: 1fr 6fr 1fr;
  grid-auto-rows: min-content;
  grid-template-areas: 
    "left-ws header right-ws"
    "left-ws main right-ws";
  gap: 5px;
}

.header {
  grid-area: header;
}

.left-ws {
  grid-area: left-ws;
}

.main {
  grid-area: main;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(100px, auto);
  gap: 10px
}

.right-ws {
  grid-area: right-ws;
}


/*--------------------  HEADER SHIT --------------------- */

.title-box {
  background: var(--primary-gradient);
  color: white;
  padding: 5px 10px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  box-shadow: 10px 10px 0px #000;
}

/*--------------------  MAIN SHIT --------------------- */

.box {
  margin: 20px;
  box-shadow: 3px 3px 0px #000;
  background-color: var(--content-bg);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100px;
}

.box-title {
  background: var(--primary-gradient);
  color: white;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  padding: 3px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-content {
  background-color: var(--content-bg);
  color: #fff;
  padding: 10px;
  height: 100%;
  flex-grow: 1;
  overflow-y: visible;
}

/*--------------------  IMAGES --------------------- */

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; 
}

/*--------------------  NAV --------------------- */

.ul-nav {
  list-style-type: " > ";
  padding-left: 20px;
}
.ul-nav li {
  margin-bottom: 8px;
}

.ul-nav a {
  color: #00eaff;
  text-decoration: none;
}

.ul-nav a:hover {
  background-color: #fff;
  color: #000;
}