
html {
  background-color: #000000;
  background-image: url('../img/bg.png');
  background-position: top left;
  background-repeat: repeat-x;
}

body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-weight: normal;
  font-family: 'USemi', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.8em;
}


h1 {
    visibility: hidden;
}

.center {
  width: 100%;
  display: grid;
  justify-items: center;
}
.center-inner {
    width: 90%;
    max-width: 1280px;
}

#head #head_left {
    width: 15%;
    padding-bottom: 20px;
}

#content {
    display: grid;
    justify-items: start;
    grid-template-columns: repeat(auto-fill, minmax(580px, 1fr));
    /* This is better for small screens, once min() is better supported */
    /* grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr)); */
    gap: 1rem;
    grid-template-rows: auto;
    column-gap: 2em;
    row-gap: 4em;
}
.no-grid {
    display: grid;
    justify-items: start;
    grid-template-columns: none !important;
}

.container-inner {
    display: grid;
    justify-items: start;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    grid-template-rows: auto;
    column-gap: 2em;
    row-gap: 4em;
}


#content h2, 
.text {
    font-size: inherit;
    font-family: inherit;
    line-height: 200%; 
    text-transform: uppercase; 
    letter-spacing: 0.2em;
    color: inherit;
}

.text.justify {
  text-align: justify;
}
#content ul {
    margin: 0;
    padding: 0;
}
#content ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#content ul li a {
    color: #ffed00;
    text-decoration: underline;
}
#content ul li a:hover {
    color: #ffed00;
    text-decoration: none;
}

#bottom {
  z-index: 999;
  text-align: right;
  width: 100%;
  height: 40px;
  position: fixed;
  top: 15px;
  right: 20px;
  font-size: 0.8em;
  text-transform: uppercase;
}
#bottom a {
  display: inline-block;
  padding: 0 5px;
}

#loading {
  z-index: 99;
  position: absolute;
  height: 100px;
  width: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.spinnertext {
  z-index: 120;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  font-size: 16px;
  letter-spacing: 10px;
  color: #ccc;
  position: absolute;
  margin-top: 40px;
  margin-left: 36px;
  text-align: center;
}

.spinner {
  z-index: 110;
  position: absolute;
  margin-left: 50px;
  width: 100px;
  height: 100px;
  background-color: #ffed00;
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
}

a:link, a:visited {
  color: #ffffff;
  text-decoration: none;
}

a:hover, a:active {
  text-decoration: none;
  color: #ffed00;
}

a.linkunderline {
  text-decoration: underline;
  color: #ffed00;
}

a.linkunderline:hover {
  color: #ffffff;
  text-decoration: none;
}

a:link.yellow, a:visited .yellow, .yellow {
  color: #ffed00 !important;
}

/*
-------------------------------------------------------------------
------------------------------------------------------------- Cookie Pop
*/

#cookie-law {
  color: #000;
  padding: 15px;
  opacity: 0.8;
  background: #ffffff;
  position: fixed;
  z-index: 10000;
  width: auto;
  display: block;
  line-height: 20px;
  top: 10px;
  left: 10px;
  right: 10px;
}

#cookiepop_left {
  display: inline;
}

#cookiepop_right {
  display: inline;
  float: right;
  text-align: right;
}

.cookie_closer {
  color: #ffffff;
  background-color: #ff0000;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 20px;
  text-decoration: none;
}

a.cookie_moreinfo {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 600px) {
  #head #head_left {
      width: 30%;
  }
  #content,
  .container-inner {
    grid-template-columns: 1fr;
  }
  .text.justify {
    text-align: left;
  }
}
