/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}
/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}
/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  background-color:#FFFFEF;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  margin:0;
}

.overall {
  /* background-image: url(astronomy-astrophotography-constellation-365633.jpg); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; 
  background: #080808;
  height: 100%; 
  /*width:100%;*/
  font-size: large;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

table {
	width: 90%
}

.listtitle {
	color:green;
	background:gainsboro;
	columnwidth:50%;
}

.listdata {
	valign:top;
}

.title {
	color:green;
	background:gainsboro;
	width:100%;
}

.header {
	clear:both;
	color: white;
}

.main {
    display: flex;
    flex-direction: row;
    height: 75vh;
    overflow: auto;
    margin:24px;
}


div::-webkit-scrollbar {
    width: 12px;
}

div::-webkit-scrollbar-track {
    background: lightgrey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: darkgrey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #353535;
}

.footer {
	clear:both;
	text-align:center;
}

.left,
.right,
.center {
	margin:0;
	display: flex;
	flex-direction: column;
    align-items: stretch;
    padding: 1rem;
}

.title {
    width: 100%;
    color: mediumspringgreen;
    background: transparent;
}

.list {
    display:flex;
    flex-direction: column;
}

.linkitem {
	border-radius: 0;
	border: none;
	display: flex;
	flex-direction: row;
}

.link {
	padding: 10px;
	color:antiquewhite;
	text-decoration:none;
	background: transparent;
	/*border: 2px solid transparent;*/
}

.link:focus {
    outline: none;
}
