@import url('https://fonts.googleapis.com/css?family=Jockey+One');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Poetsen+One');
* {
    font-family: 'Roboto';
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Jockey One';
  letter-spacing: 1px;
}
body {
    background: rgb(102, 102, 102);
    background-size: 250px;
}
#header {
    background: linear-gradient(rgb(57, 120, 255), rgb(0, 89, 255));
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.089);
    z-index: 999999;
}
#header a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
#header a:hover {
  color: rgb(112, 215, 255);
  transform: scale(1.2);
  text-shadow: 0px 0px 7px rgb(0, 0, 0);
}
#content {
  background: rgb(61, 61, 61);
  width: 900px;
  position: absolute;
  left: calc(50% - 450px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.171);
  color: white;
}
#links {
    position: absolute;
    top: 20px;
    left: 130px;
}
#games_list {
    width: 100%;
    height: 248px;
    background: rgb(219, 219, 219);
    overflow-x: scroll;
    display: flex;
}
#game {
    width: 300px;
    height: 231px;
    background: rgb(243, 243, 243);
    position: relative;
}
#game #game_desc {
    width: 300px;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.479);
    text-align: center;
    font-size: 13px;
}
#scrollToTopBtn {
    display: none; /* Hide the button by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button 20px from the bottom */
    right: 20px; /* Place the button 20px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: transparent; /* Background color */
    color: rgb(255, 255, 255); /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 0px; /* Some padding */
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.267);
  }
  
  #scrollToTopBtn:hover {
    color: #dfdfdf;
  }

  #blur-cover {
    background-color: rgba(0, 0, 0, 0.61);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1px;
  }

  #more_info {
    color: rgb(255, 255, 255);
    position: absolute;
    left: 20px;
    bottom: 0px;
    width: 260px;
    height: 40px;
    background: url("Assets/moreinfo_button_bg.png");
    background-position-x: -50px;
    text-align: center;
    transition: 0.2s ease;
  }
  #more_info:hover {
    background-position-x: 90px;
  }
  #more_info:hover>a {
    color: rgb(255, 255, 255);
    transform: scale(1.1);
  }
  #more_info a {
    position: relative;
    top: 8px;
    font-size: 21px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease;
  }
  #content {
    text-align: center;
}
#download_link {
  color: rgb(197, 197, 197);
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
}
#download_link:hover {
  transform: scale(1.1);
}
/* Discussion */
.discussion {
  width: 100%;
  background: rgb(219, 219, 219);
  text-align: left;
  color: black;
}
.discussion #comment {
  background: white;
  border: 1px solid gray;
  height: 200px;
}
.discussion #comment #discusser_avatar {
  position: relative;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 100px;
  box-shadow: none;
}
.discussion #comment #discusser_name {
  position: relative;
  top: 30px;
  left: -90px;
  width: 100px;
  height: 100px;
}
.discussion #comment #discusser_comment {
  position: relative;
  top: -70px;
  left: 0px;
  width: 100px;
  height: 100px;
}
.discussion #comment #discusser_comment_frame {
  position: relative;
  top: -20px;
  left: 120px;
  width: calc(100% - 140px);
}
/* Forum Topic Line */
#forum_threads {
  text-align: left;
}
#forum_thread {
  background: rgb(255, 255, 255);
}

footer #gifty_popup {
  position: absolute;
  top: 60px;
  left: 10px;
  filter: drop-shadow(0px 8px 6px rgba(0, 0, 0, 0.486));
  transition: 0.4s ease;
}
footer:hover>#gifty_popup {
  top: -118px;
}
#link {
  color: rgb(74, 234, 255);
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
}
#link:hover {
  transform: scale(1.1);
  color: rgb(0, 195, 255);
  text-shadow: 0px 0px 9px rgb(0, 0, 0);
}
#gamecard_link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
}
#gamecard_link:hover {
  transform: scale(1.1);
  color: rgb(0, 247, 255);
  text-shadow: 0px 0px 5px rgb(0, 255, 242);
}
#current_page {
  transform: scale(1.31);
  display: inline-block;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.596);
}
.notcurrent_page {
  color: gray;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}