@font-face {
    font-family: 'DotGothic16'; /* Nama yang akan Anda panggil di CSS nanti */
    src: url('font/DotGothic16-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
	background-color: #1c1c1c;
	font-family: DotGothic16;
}

a {
	color: white;
}

h3 {
	margin-top: 0px;
	margin-bottom: 3px;
}

.box {
    max-width: 720px;
    margin: 10px auto;
    color: white;
    display: grid;
    /* Hanya 2 kolom, jadi garis grid-nya adalah 1, 2, dan 3 */
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 10px;
}

nav, main, button {border: 2px solid white; padding: 3px; padding-bottom: 20px; color: white;}

button {
	height: 10px;
	width: auto;
	margin-top: 5px;
	background: #1c1c1c;
	color: white;
	font-family: MS UI Gothic;
	text-align: left;
	cursor: pointer;
	padding-right: 5px;
}

header {
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	gap: 5px;
	padding: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    grid-column: 1 / -1;
}

nav {
    grid-column: 2 / 3;
	height: max-content;
}

main {
	padding: 9px;
    grid-column: 1 / 2;
	height: max-content;
}

footer {
	border: 2px solid #888888;
	padding: 3px;
	color: #888888;
    grid-column: 2 / -1;
}
  
gamex {
	  box: 2px solid white;
}