body {
    font-family: "ModNation Body";
    font-size: 24px;
    background-image: url('/img/bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
}

a {
  color: orange;
}

a:hover {
  color: darkorange;
}

a:visited {
  color: darkgoldenrod;
}

.page {
    max-width: 1024px;
    margin: auto;
    color: white;
    text-shadow: 1px 1px 2px black;
}

.content {
    text-align: center;
}

header {
  position: sticky;
  top: 0;
}

footer {
  text-align: center;
  color: grey;
  font-size: 16px;
}

.nav-bar {
  font-family: "ModNation Title";
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: url('/img/header-bg.png');
  background-size: contain;
}

.nav-item {
  display: inline-block;
  vertical-align: middle;
  padding: 4px;
}

.nav-item a {
  position: relative;
  bottom: -20px;
  text-decoration: none;
  color: white;
}

.site-logo {
  width: 198px;
  height: 72px;
  background-image: url('/img/modnation_logo.png');
  background-size: contain;
  text-align: right;
}

.site-logo span {
  position: relative;
  bottom: -40px;
}

.button-image-blue, .button-image-red, .button-image-green, .button-image-purple, .button-image-pink, .button-image-pink-2, .button-image-disabled {
  width: 158px;
  height: 61px;
  font-size: 32px;
  background-position: bottom;
  background-repeat: no-repeat;
  text-align: center;
}

.button-image-blue {
  background-image: url('/img/nav-btn-blue.png');
}

.button-image-red {
  background-image: url('/img/nav-btn-red.png');
}

.button-image-green {
  background-image: url('/img/nav-btn-green.png');
}

.button-image-purple {
  background-image: url('/img/nav-btn-purple.png');
}

.button-image-pink {
  background-image: url('/img/nav-btn-pink.png');
}

.button-image-pink-2 {
  background-image: url('/img/nav-btn-pink-2.png');
}

.button-image-disabled {
  background-image: url('/img/nav-btn-white.png');
}

@font-face {
  font-family: 'ModNation Title';
  src: url('/font/ModNationTitle.ttf');
}

@font-face {
  font-family: 'ModNation Body';
  src: url('/font/ModNationBody.ttf');
}