/* Style Settings */
@import url("https://fonts.googleapis.com/css?family=Karla:400,700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css");
:root {
  --bgColor: white;
  --themeColor: #28a745;
  /* --accentColor: #e6e6e6;
  --bgColorg: #000000;
  --accentColorg: #d4af37;
  --bgColors: #000000;
  --accentColors: #a8a8a9;
  --bgColorb: #000000;
  --accentColorb: #cd7f32; */
  --font: "Karla", sans-serif;
}

* {
  font-family: var(--font);
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bgColor);
}

.themeColor {
  color: var(--themeColor);
}
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
}
h1 span {
  white-space: pre;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
}
h3 {
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
}
h4 {
  text-align: center;
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
}
h5 {
  text-align: center;
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
  font-style: italic;
}
h6 {
  text-align: center;
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
}
p {
  /* text-align: center; */
  margin-bottom: 20px;
  color: black;
  font-family: var(--font);
}

.footer {
  margin-top: 40px;
  margin-bottom: 40px;
  flex-direction: column;
}
.footer a {
  text-decoration: none;
  background-color: transparent;
  color: black;
}
.space-x-8 > * + * {
  margin-left: 2rem; /* 32px */
}
.space-y-4 > * + * {
  margin-top: 1rem; /* 16px */
}

#logo {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.games-detail {
  display: flex;
  /* align-content: flex-start; */
  justify-content: center;
  /* position: absolute; */
  /* flex-wrap: wrap; */
  /* left: 50%; */
  /* transform: translate(-50%, 0%) !important; */
}
.games {
  display: flex;
  width: 70%;
  align-content: flex-start;
  justify-content: center;
  position: absolute;
  flex-wrap: wrap;
  left: 50%;
  transform: translate(-50%, 0%) !important;
}
.games a:not(.epci) {
  scroll-margin-top: 2em;
  outline: transparent;
  display: flex;
  width: 250px;
  height: 250px;
  background: #292929;
  margin: 5px;
  border-radius: 10px;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 8px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.games a:not(.epci) b {
  z-index: 5;
}
.active {
  display: flex !important;
}
.games a:not(.epci) img {
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.games a:not(.epci):before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
}
.bar {
  background: var(--themeColor);
  height: 0px;
  width: 100%;
  transition: 0.4s;
  z-index: 4;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.games a:not(.epci):hover .bar {
  height: 40px;
}
.games a:not(.epci):hover {
  filter: brightness(95%);
  translate: 0 1px;
  box-shadow: none;
}
.game_title {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search {
  width: 300px;
  height: 30px;
  background: white;
  border: 1px solid var(--themeColor);
  border-radius: 5px;
  /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 255, 0, 0.6); */
  color: black;
  padding-left: 10px;
  transition: 0.2s;
}
.select {
  width: 100px;
  margin-left: 5px;
  cursor: pointer;
  height: 30px;
  background: white;
  border: 1px solid var(--themeColor);
  border-radius: 5px;
  /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 255, 0, 0.6); */
  color: black;
  transition: 0.2s;
  padding-right: 5px;
}
.search:focus {
  filter: brightness(95%);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 255, 0, 0.6);
  outline: none;
  /* border-color: #00bb00; */
}
.select:hover,
.select:focus {
  filter: brightness(95%);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 255, 0, 0.6);
  outline: none;
  /* border-color: #00bb00; */
}

.badge {
  background-color: var(--themeColor);
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 5px;
}
.games a:not(.epci) .badge {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 6;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

.cta {
  display: flex;
  /* flex-wrap: wrap; */
  background: hsl(187 70% 85%);
  max-width: 50rem;
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.cta img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex: 1 1 300px;
}
.cta h2 {
  text-align: left;
}
.cta__text-column {
  padding: min(2rem, 5vw) min(2rem, 5vw) min(2.5rem, 5vw);
  /* flex: 1 0 50%; */
}
.cta__text-column > * + * {
  margin: min(1.5rem, 2.5vw) 0 0 0;
}
.cta a {
  display: inline-block;
  color: black;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background: hsl(187 75% 64%);
  border-radius: 0.6rem;
  font-weight: 700;
  border: 0.35rem solid;
}
