/*=== BASE ===*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  overflow: hidden;
  color: lightgray;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(0, 0, 0); 
  background-image: url('images/space.gif'); 
}

/*=== VARIABLES ===*/
:root {
  --main-border: none;
  --main-radius: none;
}

a {
  color: lightblue;
  text-decoration: underline;
  font-weight: none;
}

a:visited {
  color: none;
}

h1, h2, h3, h4, h5, h6, b {
  color: white;
}

/*=== LAYOUT ===*/
.container {
  display: flex;
  margin: 0 auto;
  padding-right: 5px;
  padding-left: 5px;
  max-width: none;
  background-color: none;
  height: 100vh;
}

.main-content {
  flex: 1;
  padding: 10px;
  padding-left: 5px;
  overflow-y: auto;
}

.sidebar {
  width: 170px;
  padding: 10px;
  padding-right: 5px;
  font-size: medium;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-y: auto;
  border-right: 3px double gray;
}

/*=== BlOCKS ===*/
.block {
  border: var(--main-border);
  border-radius: var(--main-radius);
  padding: 25px 30px; 
  margin-bottom: 10px;
}

.scroll {
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar .block {
  border: var(--main-border);
  border-radius: var(--main-radius);
  padding: 15px; 
}

/*=== ICONS GRID ===*/
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.5em;
  column-gap: 0.5em;
}

.menu-item {
  width: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-item img {
  width: 45px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.5em;
}

/*=== LINKS ===*/
.entry-list {
  list-style-type: none;
}

.entry-list li {
  margin-bottom: 0.3em;
}

/*=== TEXT ===*/
.block p + p {
  margin-top: 10px;
}

.block :is(h1, h2, h3, h4, h5, h6) + p {
  margin-top: 10px;
}

/*=== SPACERS ===*/
.spacer {
  height: 0.5em;
  width: 100%;
}

.border-spacer {
  width: 95%;
  border-top: 3px double gray;
  margin: 1em auto;
}

/*=== MARQUEE ===*/
.quote-marquee {
overflow: hidden;
}