/* font-family: 'Permanent Marker', cursive; */

* {
  box-sizing: border-box;
}

body {
  background-color: rgb(20, 20, 20);
  color: rgb(127, 127, 127);
  font-family: 'Permanent Marker', cursive;
  margin: 0px;
  padding: 0px;
}

h1 {
  text-align: center;
  color: #0095ff;
  text-shadow: 1px 1px 2px black;
}

ul {
  list-style: none;
}

.link {
  color: white;
}

.link:hover {
  color: white;
}

.link:visited {
  color: white;
}

.game-container {
  height: 600px;
  width: 800px;
  margin: 0px auto;
  outline: 1px solid #0095ff;
}

.game-details {
  height: 400px;
  width: 800px;
  margin: 0px auto;
  color: #0095ff;
}

.footer {
  text-align: center;
}
