body {
  background-image: url('images/Tekken6.jpg');
  background-size: cover;     
  background-repeat: no-repeat; 
  background-position: center; 
  background-attachment: fixed;
}

  
/* Paste this rule at the very top of your style.css file */

main-header {
  font-family: "Bungee", sans-serif;
  font-size: 100px;       /* Thick display fonts look amazing massive */
  text-align: center;    /* Center alignment */
  color: #ff007f;        /* Hot pink look */
  width: 100%;
  display: block;
}

.info-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px 30px;
  border: 2px solid #fff;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  font-family: sans-serif;
  z-index: 10;
}