html {
    width: 100%;
    margin: auto;
}

body {
    width: 100%;
    margin: auto;
}

button {
    width: 90%;
    height: 4em;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #E9B05C;
    margin-bottom: 0.25em;
    margin-top: 0.25em;
    font-family: sans-serif;
    font-size: 12pt;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
}

/* collapsible button section headers */
.collapsible {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    color: #FFFFFF;
    font-family: sans-serif;
    font-size: 18pt;
    opacity: 1.0;
    margin-bottom: 0;
    margin-top: 0;
    
}

.active, .collapsible:hover {
    background: rgba(0, 0, 0, 0.9);
}

 .collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 14px;
    color: #FFFFFF;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* div label for content within .collapsible */
.content {
    display: none;
    overflow: hidden;
}

/* custom divs */
.responsiveContainer {
    margin: auto;
    max-width: 60em;
}

#spacer {
    height: 2em;
}

#header {
    margin-left: 2em;
    max-width: 100%;
    text-align: left;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

#glitchbg {
    margin: auto;
    width: 100%;
    text-align: left;
    background-image: url(/images/glitch_bg.png);
    padding-bottom: 1em;
    padding-top: 0.5em;
}

#footer {
    display: block;
    text-align: center;
}

#new {
    position: absolute;
    top: 5%;
    right: 10%;
    filter: drop-shadow(0 0 6px #000000);
    animation: bounce 0.5s;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
    animation-iteration-count: infinite;
}

/* arrow_marker bounce effect (stolen) */
@keyframes bounce {
    from {
        transform: translate3d(30%, 0, 0);
    }
    to {
        transform: translate3d(30%, 10px, 0);
    }
}

#new img {
    width: 75px;
}

/* typography */
h1 {
    color: #FFFFFF;
    font-family: sans-serif;
    font-size: 36pt;
}

h2 {
    color: #FFFFFF;
    font-family: sans-serif;
    font-size: 18pt;
}

p {
    color: #FFFFFF;
    font-family: monospace;
    font-size: 14pt;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

/* link styling */
a {
    color: #E9B05C;
}

a:hover {
    border-bottom: 1px solid;
}

a:visited {
    color: #E9B05C;
}

.noLine, .noLine:hover, .noLine:visited {
    border: none;
    text-decoration: none;
}

/* table styling */
table {
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
}

tr {
    border-bottom: 2px solid #E9B05C;
}

th {
    padding-left: 1em;
    padding-right: 1em;
    vertical-align: middle;
}

td {
    background-color: #43434A;
    height: auto;
    border-bottom: 2px;
    border-bottom-color: #E9B05C;
}

#titlebar {
    height: 3em;
    font-family: sans-serif;
    color: #E9B05C;
    text-align: left;
    background-color: #1E1E23;
}

/* breadcrumb nav */

.nav {
    background-color: #1E1E23;
    font-family: sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    margin: 0;
}

ul.breadcrumb {
    list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    padding-right: 0.25em;
}

ul.breadcrumb li a:hover {
    text-decoration: underline;
} 

/* miscellanious styling */
.hidden {
    display: none;
}

.img_container {
    padding: 0.5em;
}

/* responsive layout <768px wide */
@media screen and (max-width: 768px) {
    .column {
        width: 100%;
  }
    .floatContainer {
        width: 100%;
    }
    table {
        width: 100%;
    }
    .responsiveContainer {
        width: 100%;
    }
    .responsiveContainer #navbox {
        max-width: 85%;
    }
}

/* Sweep To Right buttons */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E9B05C;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #FFFFFF;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}