/* Page Basics */

#header {
  background-color: darkgreen;
  margin-bottom: 20px;
  margin-left: 2%;
  margin-right: 2%;
  background-position-x: center;
  background-image: url('images/site_bg.png');
}

.sticky_navbar {
  position: sticky;
  top: 0;
  margin-bottom: 25px;
  margin-left: 2%;
  margin-right: 2%;
  background-color: black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

li {
  display: inline;
}

li a {
  color: white;
  text-align: center;
  font-size: 25px;
  padding:3px;
  margin-right: 10px;
  margin-left: 10px;
  text-decoration: none;
  font-family: 'Courier New';
  transition: background-color 0.25s;
  transition-timing-function: ease;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected {
  background-color: #111111;
}

.selected:hover {
  background-color: #111111;
}

li a:hover {
 
  background-color: #111111;
  transition: background-color 0.25s;
  transition-timing-function: ease;
}

h1, h2 {
  color: white;
}

h3, h2, h1 {
  font-family: 'Trebuchet MS';
}

h3 {
  color: grey;
}

h2 {
  font-size: 35px;
}

p {
  color: white;
  text-align: left;
  font-size: 25px;

  padding: 5px;
  font-weight: normal;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
}

h5 {
  color: lightgrey;
  font-weight: normal;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  align-items: flex-end;
}

.image_caption {
  text-align: center;
  font-family: 'Courier New', monospace;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: auto;
  margin-top: auto;
  font-size: 150%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0 50px;
  height: 100%;
  justify-content: center;
}

body {
  background-color: black;
  margin-left: 10px;
  margin-right: 10px;
}

.linkbrowser {
  margin:auto;
  text-align: center;
  background-color: #1a1a1a;
}

#more {
  display: none;
}

/* Images */

.title_img {
  opacity: 1;
  width: 300px;
  transition: width 0.3s;
  transition-timing-function: ease;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page_title_img {
  opacity: 1;
  width: 200px;
  transition: opacity 0.3s;
  transition-timing-function: ease;
}

.title_img:hover {
  opacity: 0.9;
  width: 310px;
}

.page_title_img:hover {
  opacity: 0.4;
}



/* Specifics */

.social {
  animation: 0.5s initialize;
  width: 100px;
  padding: 20px;
  transition: opacity 0.3s;
  transition-timing-function: ease;
}

.social:hover {
  opacity: 0.4;
}

.link {
  text-decoration: none;
  outline-color: transparent;
  color: lightblue;
}

.link:visited {
  color: lightblue;
}

.game_image {
  object-fit: cover;
  overflow: hidden;
  width: 70%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.game_title {
  object-fit: cover;
  overflow: hidden;
  width: 80%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.post {
  animation: 0.5s initialize;
  background-color: #1a1a1a;
  border: 3px solid #1a1a1a;
  margin:auto;
  text-align: center;
  width: 80%;
  
  transition: background-color 0.3s;
  transition-timing-function: ease;
}

.game_post {
  animation: 0.5s initialize;
  align-self: stretch;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 50vh;
  margin: 30px;
  scale: 100%;
  border-radius: 25px;
  border: 1px solid transparent;
}

.game_post:hover {
  /*position: relative;
  top: -5px;*/
  scale: 105%;
  border: 1px solid #d0d0d0;
  transition: scale 0.2s;
  transition-timing-function: ease;
}

.post:hover {
  background-color: #0d0d0d;
  border: 3px solid #0d0d0d;
}

@keyframes initialize {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}


.center {
  text-align: center;
}

/* Terminal */

.terminal {
  animation: 0.5s initialize;
  background: black;
  border: 1px white solid;
  width: 100%;
  border-radius: 5px;
  padding: 12px 0 0 0;
  font-family: 'Courier New', monospace;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.terminal p {
  font-family: 'Courier New', monospace;
  padding: 5px 0 0 0;
  margin-top: -10px;
}

.userEnteredText{
  color: rgb(255, 255, 255, 0.5);
  padding: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: inline-block;
}

#terminalResults {
  width: 100%;
  height: 400px;
  padding: 12px;
  
  overflow-y: auto;
  resize: none;
  border: none;
  line-height: 18px;
  font-size: 25px;
  display: block;
  color: rgb(255, 255, 255, 0.9);
}

#terminalResults a{
  color: rgb(255, 255, 255, 0.9);
  text-decoration: underline;
}

#terminalTextInput {
  background: black;
  display: block;
  border: none;
  border-radius: 0 0 4px 4px;
  width: 96%;
  color: white;
  padding: 18px;
  font-size: 25px;
  outline: none;
  font-family: 'Courier New', monospace;
}

@media screen and (max-width: 1000px) {
  #terminalResults {
    height: 100px;
  }
}