/**
 * @file
 * Basic styling for the program.
 */
body {
  background: #000;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Raleway", sans-serif;
}

.enter-site h1{
  color: rgb(255, 255, 255, 0);
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 1%);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 10px;
  padding-bottom: 40px;
  z-index: 999;
}

a.fn-button:hover {
  /* background: #000000; */
  border: 0px solid transparent !important;
  color: rgb(225, 9, 9);
  text-decoration: none;
}

a.fn-button:link {
  /* background: #000000; */
  border: 0px solid transparent !important;
  text-decoration: none;
}

a.fn-button {
  background: transparent none repeat scroll 0 0;
  border: 0px solid rgb(12, 12, 12);
  color: rgb(247, 244, 244);
  display: inline-block !important;
  font-size: 50px;
  font-weight: 800;
  height: 120px;
  /* letter-spacing: 1px; */
  /* line-height: 60px; */
  /* padding: 0 50px; */
  /* text-transform: uppercase; */
  transition: all 0.5s ease 0s;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 999;
}