/* Why are you in here? */
:root {
  --blue-color: #6bc1da;
  --red-color: #e22c00;  
}

@font-face {
  font-family: "BebasNeueRegular";
  src: url("fonts/BebasNeueRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url("rab.jpeg") no-repeat center center fixed;
  background-size: cover;
  font-family: "BebasNeueRegular", sans-serif;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

header {
  position: relative;
  top: 35%;
  left: 0;
  width: 100%;
  text-align: center;
  background: white;
  padding: 20px 0;
}

.subtitle {
  position: absolute;
  bottom: 4px;
  right: 0;    
  margin: 0; 
}

.blue {
  color: var(--blue-color);
}

.red {
  color: var(--red-color);
}

a {
    font-weight: bold;
    text-decoration: none;
    color: inherit; 
}

a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}
