* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
}

.navBar {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  font-size: 20px;
  justify-content: space-evenly;
  box-shadow: 3px 5px 10px white;
}

.navBar a {
  text-decoration: none;
  color: white;
}

.navBar a:active {
  text-decoration: underline;
}

.page1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 3%;
  width: 140px;
  box-shadow: 0px 2px 10px gray;
}

.game-section img {
  width: 110px;
  border-radius: 3%;
  border-bottom: 1px solid white;
}

.game-section p {
  font-size: 13px;
}

.game-section label {
  font-size:15px;
  color: red;
}

.game-section button {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 5px 5px;
  border-radius: 20px;
  border: 1px solid blue;
  background-color: #0FC6FF;
  transition:0.2s;
}
.game-section button:active{
  box-shadow:0px 0px 50px green, 0px 2px 50px green;
  background-color: #0E134B;
  text-transform: uppercase;
  color:white;
  font-weight: bold;
}
.title {
  text-align: center;
  margin-top: 2px;
  padding-bottom: 70px;
  padding-top: 60px;
  font-size: 30px;
}

.title:after {
  content: "mods";
  color: red;
}

.status:after {
  content: "WORKING";
  display: block;
  color: green;
  margin-left: 3px;
  margin-top: 5px;
}

.status {
  margin-top: 15px;
}

.ver {
  margin: auto;
}

#test:after {
  content: "NOT TESTED";
  color: red;
}
#searchInput{
  text-align:center;
  position:absolute;
  top:23%;
  left:23%;
  border: 1px solid gray;
  padding:5px 5px;
  border-radius:20px;
  box-shadow: 0px 2px 20px white;
}
#searchInput:focus{
  outline:none;
  box-shadow:0px 2px 10px green;
}
#out:after{
  content:'OUTDATED';
  color:red;
}
#risky:after{
  content:'RISKY';
  color:red;
}
#nwork:after{
  content:'NOT WORKING';
  color:red;
}
#fixed:after{
  content:'FIXED';
  color:green;
}
#sell:after{
  content:'AVAILABLE';
  color:green;
}
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}
.user-count {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 100px;
  color: silver;
}
.user-count:before {
  content:"Visits: ";
}
@media (min-width: 980px){
  #searchInput{
    display:flex;
    justify-content: center;
    align-items:center;
    left:40%;
    top:8%;
  }
  #scrollToTopBtn {
    padding: 40px 40px;
  }
  .kenshie{
    font-size:50px;
  }
  #userCount{
    font-size:50px;
  }
}