html {
  background: linear-gradient( rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
  url('./images/typewriter.jpg') center center fixed;
  background-position: center;
  background-size: cover;
  /* background-repeat: no-repeat; */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  overflow: hidden;
}

body {
  font-family: 'Special Elite', 'cursive', 'sans-serif';
  width: 100%;
  color: #2e2f2f;
}

.game-page {
  display: flex;
  flex-direction: column;
}

.title-container {
  text-align: center;
}

h1.title {
  font-size: 45px;
}

.sub-title {
  position: relative;
  left: 83px;
  margin-top: -25px;
  font-size: 14px;
}

.game-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.game-board {
  margin: 0 auto;
  display: flex;
  width: 33.3333%;
  height: 100%;
}

.link-container {
  width: 33.3333%;
  font-size: 24px;
  line-height: 2.5;
  margin: auto;
}

.links {
  width: fit-content;
  margin: auto;
}

.links a {
  text-decoration: none;
  color: black;
}

.links #link:hover {
  color: pink;
  transition: 0.3s;
  transform: scale(1.2);
}

.controls-container {
  width: 33.3333%;
  margin: auto;
}

.game-instructions {
  max-width: 320px;
  margin: auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.controls-title, .instructions-title {
  width: 170px;
  margin: auto;
  text-align: center;
  text-decoration: underline;
}

.arrows {
  width: 170px;
  margin: 10px auto;
  line-height: 1.5;
  text-align: center;
}

.arrow-text {
  margin-top: 10px;
}

.space-bar {
  width: inherit;
  margin: 20px auto;
  text-align: center;
  line-height: 1.5;
}

strong {
  font-size: 20px;
}

/* footer */
footer {
  position: absolute;
  bottom: 0;
  float: right;
  width: inherit;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.photo-cred {
  margin-right: 10px;
}