body {
  background-image: url("https://t3.ftcdn.net/jpg/03/06/59/52/360_F_306595210_sTtKiI1G7Ulo8q3OfAXpKvMrDXOEb8eJ.jpg");
  height: 100%;
  background-image: no-repeat;
  background-size: cover;

}
@keyframes slideInLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(10);
  }
}

header {
  animation: .9s ease-out 0s 1 slideInLeft;
  background-color: red;
  border: 4px solid;
  position: sticky;
  width: 100%;
}

#titleText {
  margin: 0;
  padding: 0;
  font-family: "consolas", monospace;
  text-align: center;
  font-size: 80px;
  color: whitesmoke;
  -webkit-text-stroke: 2px black;
  background-size: cover;
  -webkit-background-size: cover;
  
}

#hockeyContainer {
  text-align: center;
}

#hockeyBoard {
  margin-top: 100px;
  border: 4px solid;
  width: 50%;
  height: 50%;
  background-color: whitesmoke;
 
}
#scoreBoard {
  font-family: "consolas", monospace;
  font-size: 50px;
  color: whitesmoke;
  justify-content: space-between;
  padding-top: 35px;
  padding-left: 15px;
  padding-bottom: 30px;
  -webkit-text-stroke: 1.5px black;

}
#restartContainer {
  width: 50%;
  margin: auto;
  padding-top: 40px;
  padding-left: 400px;
}
#restartBtn {
  font-family:  "consolas", monospace;
  font-weight: bold;
  font-size: 25px;
  border: 5px solid;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px;
  color: whitesmoke;
  background-color: black;
  
}
#restartBtn:hover {
  background-color: red;
}

#footer {
  font-size: 30px;
  color: white;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  border: 4px solid black;
  color: white;
  text-align: center;
  animation: .9s ease-out 0s 1 slideInLeft;
}