* {
  font-family: 'Inter';
}

h3 {
  font-weight: 300;
  font-size: 30px;
  margin: 10px;
}

h4 {
  font-weight: 300;
  font-size: 18px;
}

.main-content {
  color: #fff;
  margin-top: 90px;
  text-align: center;
}

.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.7;
  margin: 0px 150px;
}

.input-div {
  text-align: center;
  margin: 10px 0px;
}

input {
  background: #1b1b1b;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  width: 50vw;
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 15px;
  -webkit-border-radius:15px;
  text-decoration-style: solid;
  text-decoration-color: #fff;
  transition: 500ms;
  outline: none;
}

input:hover {
  background: #252525;
}

::placeholder {
  color: #757575;
  font-size: 16px;
}

.game-card {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 200ms;
  border: 3px solid transparent;
  display: block;
  margin: 15px;
}

.game-card:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-color: var(--default);
}

.game-card:active{
  transform: scale(1);
  border-color: transparent;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card .content {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  padding-bottom: 3px;
  height: auto;
  bottom: 0;
  opacity: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.game-card .title {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin: 0;
  opacity: 0;
  transition: all 200ms !important;
}

.game-card:hover .title {
  opacity: 1;
  transition: all 200ms !important;
}

.game-card:hover .content {
  opacity: 1;
  transition: all 200ms !important;
}

.fa-star {
  position: absolute;
  display: inline-block;
  padding: 5px;
  color: #ffff00;
  text-align: center;
  font-size: 20px;
  background: #000;
  border-radius: 16px;
  top: 8px;
  right: 8px;
  z-index: 9996;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.box {
  color: #fff;
  text-align: center;
  background: transparent;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  text-decoration-style: solid;
  text-decoration-color: #fff;
}

.box a {
  text-decoration-style: solid;
  text-decoration-color: #fff;
  color: #fff;
}

kbd {
  font-family: Arial, sans-serif;
  background-color: #1b1b1b;
  border: 1px solid #495057;
  padding: 5px 10px;
  border-radius: 3px;
}

#randomText {
  margin: 25px 0px;
}

.discord-button {
  color: #fff;
  background: #404eed;
  border: 0px;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 23px;
  transition: all 300ms;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 10px 0px;
}

.discord-button:hover {
  transform: scale(0.95);
}

@media screen and (max-width: 1000px) {
  .center {
    margin: 0px 100px;
  }
}

@media screen and (max-width: 800px) {
  .center {
    margin: 0px 50px;
  }
}