/* main site template */

body {
	background: white url(/assets/bgs/spacebg.gif);
	font-family: "Goldman", courier new;
	color: white;
	line-height: 13px;
	letter-spacing: 1px;
	font-size: 11px;
	cursor: url('https://cdn.cursors-4u.net/previews/grey-pointer-23a1c922-32.webp') 32 32, auto !important;
	
	margin:0;
	height:100vh;
	align-content:center;
}


main {
	max-width: 100vw;
	margin:auto;
	border: 1px solid white;
	border-radius: 5px;
	background-color:#000;
}

.top {
	text-align: center;
	height: 80px;
	width: 100%;
	align-items: center;
}

.sitename {
	font-family: 'orbitron';
	font-size: 20px;
	letter-spacing: 10px;
	color: white;
	
	line-height: 20px;
	
	padding: 10px 5px;

	display: flex;
	flex-direction: column;
}

.navigation {
	border-bottom: 1px dotted white;
	display: flex;
	padding: 0px 30px 20px 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.navigation a {
	display: inline-flex;
	flex-direction: column;
	
	padding-left: 25px;
	padding-right: 25px;
	
	font: 9px 'orbitron';
	text-transform: uppercase;
	text-align:center;
	font-weight: bold;
	line-height: 5px;
	color: white;
}

.navigation a:hover {
	color: white;
	cursor: url('https://cdn.cursors-4u.net/previews/grey-pointer-23a1c922-32.webp') 32 32, auto !important;
}

::-webkit-scrollbar-thumb {
	background-color: white;
	border-radius: 3px;
}

::-webkit-scrollbar {
	width: 5px;
	height: 0px;
	background: transparent;
}

#news {
	font-size: 10px;
}

textarea {
	border: 1px solid white;
	color: white;
	font: 10px 'goldman';
	letter-spacing: 1px;
	margin-bottom: 5px;
}

 img {
	border: 0;
	margin:auto;
}

/* misc site templates */

.wormhole-btn {
  display:block;
  height:fit-content;
  width:fit-content;
  margin:auto;
  padding-bottom:10px;
}

.planet {
	display: flex;
	flex-direction: column;
	filter: grayscale(75%);
}

.planet img {
    height:40px;
    padding:4px;

    transition: transform 0.5s ease,
}
.planet:hover {
    transition: filter 0.5s ease;
    filter:none;
	transform: translateY(-3px);
}

/* screen-specific styles. Styles inside this block will only be applied to screens LARGER than the size specified. */
/* Consequently, things defined OUTSIDE this block will be the default, aka. used on smaller screens. */
@media only screen and (min-width: 768px) {
	main{
	  max-width:70vw;
	  }

	}



@media only screen and (min-width: 1024px) {
	.sitename {
		font-size: 30px;
		margin: 15px 10px;
	}
	main{
	  max-width:50vw;
	}
}
@media only screen and (min-width: 1920px) {
	main{
	  max-width:35vw;
	  }

	}

	/* post template */

.title {
	display: inline-block;
	color: white;
	font-family: 'orbitron';
	font-size: 10px;
	text-transform: uppercase;
	line-height: 10px;
	letter-spacing: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border: 1px solid white;
	border-bottom: 1px dotted white;
	padding: 4px;
}

.box {
	border: 1px solid white;
	border-top: 2px solid white;
	border-radius: 3px;
	border-top-left-radius: 0px;
	padding: 4px;
	padding-left: 8px;
	padding-right: 8px;
	padding-top: 8px;
	margin-bottom: 8px;
}

/* constrained box size */
.update-box {
    overflow:auto;
    max-height:20%; 
}

.left {
	padding-top: 4px;
    width:73%;
	border-right: 1px dotted white;
	padding-right:4px;
}

.right {
	padding-top: 4px;
	width:27%;
	padding-left:4px;
}

.middle {
	padding: 4px;
	width:100%;
}

footer {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
	padding: 5px 0;
}

/* containers for the posts */

.columns {
	display:flex;
	flex-direction:row;
	max-height:60vh;
	overflow:auto;
}

.boxes {
	padding:4px;
	display:flex;
	width:100%;
	height: min-content;
}

/* text specific / decoration styles */

ul {
    margin:4px;
    padding-left:6px;
}

p {
	margin: 4px;
	font-size: 11px;
	text-wrap: pretty;
	/* line-break: anywhere; */
	overflow-wrap: break-word;
}

b {
	color: white;
	font-weight: normal;
}

h1 {
	text-decoration: underline white;
}

a:link,
a:visited,
a:active {
	color: white;
	text-decoration: none;
	cursor: url('https://cdn.cursors-4u.net/previews/grey-pointer-23a1c922-32.webp') 32 32, auto !important;
}

a:hover {
	color: #e1ff75;
	cursor: url('https://cdn.cursors-4u.net/previews/grey-pointer-23a1c922-32.webp') 32 32, auto !important;
}

hr {
  margin-bottom:10px;
  }

