@font-face {
    font-family: MissionGothic;
    src: url("Mission-Gothic-Bold.otf") format("opentype");
}

@font-face {
    font-family: National;
    src: url("National-Semibold.otf") format("opentype");
}

html, body {
  height: 100%;
}


body,
.modal-content { 
/*  background: url(bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;*/
  background-color: #7f110c;

  color: #fdcd7d;
  font-family: 'MissionGothic', Helvetica, serif;
  font-size: 20px;
  letter-spacing: 2px;
}

a {
  color: #fdcd7d;
}

@media (max-width: 992px) {
  body {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

.pulse {
  cursor: pointer;
}


/***** Pulse *****/

.pulse:hover{ 
  animation: pulse 1s infinite;
  animation-timing-function: linear;   
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1) }
  100% { transform: scale(1); }
  }
}