@media all {
	body {
		color: #010;
		background: #f1f1f1;
		margin: 0px;
		padding: 0px;
		font-family: 'Kanit', sans-serif;
  }
}

h1, h1 * {
	font-weight: 700;
}

header {
  margin: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  color: #f1f1f1;
  background: #181818;
  z-index: 1000;
}

header .header {
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
}

header .header img.logo {
  height: 77px;
}

header .header nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 77px;
}

nav ul {
  list-style: none;
  margin: 0px;
}

nav ul li {
  float: left;
  text-transform: uppercase;
  line-height: 77px;
}

nav ul li a {
  color: #eee;
  padding: 0px 40px;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #da3;
}

.games {
  padding-top: 77px;
}

.game-card {
  padding: 0.05px;
  height: calc(100vh - 77px);
  max-width: 100vw;
  position: relative;
  background-size: cover;
}

.game-card .game-info-container {
  width: 100%;
  background: rgba(19,19,19,.77);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: 100px;
  padding: 20px 0px;
}

.game-card .game-info {
  width: 1000px;
  max-width: 90vw;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 200;
  color: #f1f1f1;
}

.game-card .game-info h2 {
  font-size: 50px;
  text-transform: uppercase;
}

h2 {
  margin: 10px 0px 20px 0px;
}

#company {
  background: #181818;
  color: #f1f1f1;
  text-align: center;
  padding: 20px 0px;
}

a {
  color: #e6a13a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}