ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Courier";
  background-size: cover;
}

.header {
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#game-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  padding: 10px 10px;
  background-color: #292929;
  opacity: 85%;
  box-shadow: 2px 2px 12px 4px #636363;
}
#game-title:hover {
  cursor: pointer;
  text-decoration: underline #303030c2;
}

.personal-link {
  position: relative;
  top: 5px;
}

#github {
  width: 38px;
  filter: brightness(10%);
}
#github:hover {
  filter: brightness(40%);
}

#linkedin {
  width: 40px;
  filter: brightness(60%);
}
#linkedin:hover {
  filter: brightness(110%);
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

canvas {
  box-shadow: 2px 2px 12px 4px #636363;
}

#canvas {
  background-color: #292929;
  opacity: 85%;
}
