@font-face {
  font-family: 'Bahnschrift Light';
  src: url('assets/fonts/bahnschrift.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  position: fixed;
  height: 100%;
  width: 100%;
  
  font-family: 'Bahnschrift Light', sans-serif;
}

.heading_60 {
  margin-top: 60vh;
  margin-left: 5vh;
  margin-bottom: 0px;
  color: #ffffff;
  display: block;
  font-size: 10vh;
}

.heading_40 {
  margin-top: 0px;
  margin-left: 5vh;
  color: #ffffff;
  font-size: 5vh;
}

.heading_40_blink {
  margin-top: 0px;
  /*margin-left: 5vh;*/
  color: #ffffff;
  font-size: 5vh;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
      opacity: 0;
  }
}