html {
  height: 100%;
  background-image: linear-gradient(to bottom right, yellow, aquamarine);
  overflow: hidden;
}

@font-face {
  font-family: schaeffer;
  src: url(../assets/fonts/Schaeffer.ttf);
}

body {
  text-align: center;
}

.title {
  font-family: schaeffer;
  font-size: 60px;
  color: rgb(127, 97, 156);
  margin-bottom: 100px;
  margin-top: 50px;
}

.center {
  display: flex;
  justify-content: center;
}

canvas {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  display: block;
}

.instructions {
  margin: auto auto auto 40px;
  width: 150px;
  font-family: sans-serif;
  text-align: center;
}

h4 {
  font-weight: 100;
}

.red-piece {
  color: red;
}

br {
  margin-bottom: 2px;
}

.buttons {
  width: 420px;
  margin: auto;
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
}

i {
  font-size: 20px;
}

#win-message {
  text-shadow: 0 1px 0 #ccc,
              0 2px 0 #c9c9c9,
              0 3px 0 #bbb,
              0 4px 0 #b9b9b9,
              0 5px 0 #aaa,
              0 6px 1px rgba(0,0,0,.1),
              0 0 5px rgba(0,0,0,.1),
              0 1px 3px rgba(0,0,0,.3),
              0 3px 5px rgba(0,0,0,.2),
              0 5px 10px rgba(0,0,0,.25),
              0 10px 10px rgba(0,0,0,.2),
              0 20px 20px rgba(0,0,0,.15);
  font-family: sans-serif;
  font-weight: bold;
  color: red;
}

footer {
  position: absolute;
  bottom: 0;
  background-color: rgba(0,0,0,.25);
  width: 103%;
  height: 100px;
  margin-left: -10px;
}

.footer-buttons {
  opacity: 100%;
  width: 500px;
  margin: auto;
  margin-top: 33px;
  display: flex;
  justify-content: space-between;
}

.button {
  height: 40px;
  width: 60px;
  opacity: 70%;
  cursor: pointer;
}

.button:hover {
  opacity: 100%;
}