:root {
  --header-bg: black;
  --nav-bg: #06001f;
  --article-bg: silver;
  --sidebar-bg: silver;
  --article-text-color: #6f40e6;
}
body {
  font-size: 16px;
  color: #black;
  background-color: black;
  background-image: url(images/sky1.jpg);
  background-size: 100%
}
table, td {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  border-style: none;
}
th {
  border-collapse: inherit;
  border-spacing: 2px;
  border-style: double;
}
.page {
  font-family: "ms gothic";
  margin-left: 7%;
}
.header,.nav,.main,.left-sidebar {
  border:1px solid black;
}
.footer,.nav {
  max-width: 86%;
}
.left-sidebar,.right-sidebar {
  width:40%; /*prev 240 px*/
  background-color:var(--sidebar-bg);
  max-height: 100%;
}

.right-sidebar {
  background-color: transparent;
  border: transparent;
}
.flex {
  display: flex;
  max-width: 86%;
  max-height: 100%;
  /* mess with height or remove it to see intended site, percentages to make resposive */
}
.header {
  height: 135px; /* 160px for best fit and use contain; */
  max-width: 56%;
  margin-bottom: 10px;
  background-color: var(--header-bg);
  background-image: url(images/header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 5px;
}
.main {
  width: 100%;
  /*mess with height too or remove it to get intended site parameters */
  margin-left: 25px;
  margin-right: 25px;

  align-items: center;
  background-color: var(--article-bg);
}
section {
  border:1px solid black;
  margin-bottom: 15px;
}
.links {
  list-style-type: "";
  text-align: center;
}
.links li {
  margin-bottom: 5px;
  border: 1px solid black;
  font-size: 15px;
  margin-right: 15px;
  background-color: silver;
}
.links li a {
  text-decoration: underline;
  color: inherit;
}
li:hover {
  color: blue;

}
ul {
  list-style-type: none;
}
.section {
  color:var(--sidebar-text-color);
}
.subtitle {
  border: 1px solid white;
  background-color:var(--nav-bg);
  color:var(--article-text-color);
  font-weight:lighter;
  letter-spacing: 1px;
  text-align: center;
  background-image: linear-gradient( #000000, #f85ae7);
  font-size: 13px;
  color: #ffddff;
}
.welcome {
  border: 1px solid white;
  grid-column: 1/ span 4;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
}
.inner-welcome {
  display:flex;
  max-height: 100%;
  flex-direction: column;
  margin-left: 10px;
  overflow: hidden;
}

.scroll-container {
  overflow: hidden;
  font-size: 11px;
  height: 20px;
  font-weight: bold;
}

.footer {
  text-align: center;
  font-size: 12px;
  margin-top: 1%;
}
