.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 8px;
  border-spacing: 0;
  border-collapse: collapse;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-dark {
  margin: 20px 0;
}
.table-dark.table-bordered {
  border: 0;
}
.table-head {
  text-align: center;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#eceef1),
    to(#0e8dd6)
  );
  background: -o-linear-gradient(left, #eceef1, #168eff);
  background: linear-gradient(to right, #eceef1, #168eff);
}
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}
.table-bordered > thead > tr > th {
  border-bottom-width: 2px;
}
.table-bordered > tbody > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #168eff;
  border-top-color: rgb(255, 251, 15);
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-width: 1px;
  vertical-align: middle;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > tbody > tr > td,
.table > thead > tr > th {
  padding: 18px 0;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
  text-transform: uppercase;
  border-color: #454d55;
  text-align: center;
  font-family: arial;
  vertical-align: middle;
}

.button {
  display: inline;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  width: 100%;
  border-radius: 5px;
  height: 38px;
  cursor: pointer;
  padding: 5px 20px;
  max-width: 128px;
  color: #168eff;
  font-weight: 700;
  font-family: arial;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s,
    -webkit-box-shadow 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s,
    -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  will-change: transform;
  min-width: 80px;
  border: 0 solid rgb(255 255 255);
  line-height: 12px;
  -webkit-animation: blinking 0.5s infinite;
  animation: blinking 0.5s infinite;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.site-description a {
  text-decoration: none;
  color: #168eff;
}
.game_cards {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.game_card {
  width: calc(20% - 16px);
  text-align: center;
}
.game_card_img {
  width: 100%;
}
.game_card a {
  text-decoration: none;
  color: #000000;
  transition: all 0.5s ease-out;
}
.game_card a:hover {
  color: #168eff;
}

@-webkit-keyframes blinking {
  0% {
    border: 2px solid #000000;
  }
  100% {
    border: 2px solid #168eff;
  }
}
@keyframes blinking {
  0% {
    border: 2px solid #000000;
  }
  100% {
    border: 2px solid #168eff;
  }
}