@font-face {
  font-family: 'Consola';
  src: url('consola.ttf');
}

:root {
  --primary: #96FF00;
  --secondary: #1b2f00;
  --overlay: #95ff0016;
}

::selection {
  color: black;
  background-color: var(--primary);
}

body {
  color: white;
  font-family: Verdana;
  margin: 0px;

  background: url('found-footage.gif'), url('background.png');
  background-blend-mode: screen;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
}

.container {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);

  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  max-width: 960px;
}

.logo {
  display: block;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  max-height: 150px;
  background-image: url('real-gang.png');
  background-size: contain;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-around;
  
  height: 48px;
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: var(--primary);
  background-color: var(--overlay);
}

a {
  color: white;
  text-decoration-line: none;
}

.dropdown {
  position: relative;
  
  color: white;
  text-decoration-line: none;

  border-style: dotted;
  border-width: 0px 0px 1px 0px;
  border-color: var(--primary);

  cursor: pointer;
}

.dropdown-content {
  display: none;
  min-width: 150px;
  position: absolute;
  z-index: 1;
  background-color: var(--secondary);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  display: flex;
  min-height: 30px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  padding-left: 12px;
  text-shadow: 1px 1px black;
  text-transform: uppercase;
}

.dropdown-content a:hover {
  background: var(--primary);
  color: black;
}

.dropdown-content:first-child {
  padding-top: 8px;
}

.dropdown-content:last-child {
  padding-bottom: 8px;
}

.dropdown:hover .dropdown-content { display: block; }

h1 {
  font-size: 28px;
  font-family: 'Consola', Courier, monospace;
  color: var(--primary);
}

p {
  line-height: 1.5lh;
}

.section {
  padding: 0px 12px 0px 12px;
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: var(--primary);
  background-color: var(--overlay);
}

.banner-container {
  width: 100%;
  height: 42px;
  overflow: hidden;
  position: relative;
  margin: 12px 0px 0px 0px;
}

.banner-content {
  position: absolute;
  white-space: nowrap;
  animation: slideRight 15s linear infinite;
}

.banner-content:hover {
  animation-play-state: paused;
}

.banner-content img {
    height: 40px;
    border: solid var(--primary) 1px;
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}