@font-face {
    font-family: reznor;
    src: url("../fonts/REZD.ttf")
}

@font-face {
    font-family: Futura;
    src: url("../fonts/futura-medium-bt.ttf")
}

body {
    background-image: none;
    background-color: black;
    padding-top: 70px;
    font-family: Futura;
}	

footer {
    color: white;
    bottom: 0;
    position: fixed;
    right: 0;
    margin-right: 10px;
}

.rgbwhitelink {
    color: white;
}	

.dropdown-menu {
    color: white;
    background-color: black;
}

.dropdown-menu > li > a {
    color: white;
}

.dropdown-menu > li > a:hover {
    color: black;
    background-color: white;
    background-image: none;
}

.inner {
    width: 95%;
    margin: auto;
    position: relative;
    min-width: 800px;
    max-width: 1280px;
}

.clear {
    clear: both;
}

.text-box {
    margin: 0 0 20px 0;
    background-color:rgba(35,35,35,0.7);
    box-shadow: 0 0px 3px rgba(31, 31, 31, 0.25);
}

.spoiler-text-box {
    margin: 0 0 20px 0;
    background-color:rgba(35,35,35,0.7);
    box-shadow: 0 0px 3px rgba(31, 31, 31, 0.25);
    border-style: inset;
    border-color: rgb(24, 24, 24);
    padding: 8px;
    max-width: 850px;
    font-family: "Lucida Console";
}

.spoiler-text-box h4 {
    font-size: 14px;
}

.text-box h1 {
    color: white;
}

.text-box h2 {
    height: 24px;
    line-height: 24px;
    display: block;
    background: #ececec;
    padding: 2px 0 2px 5px;
    color: black;
    letter-spacing: -0.06em;
    text-shadow: 0px 0px 0 white;
    background-color: black;
    color: white;

}

.text-box h3 {
    color: white;
    padding: 10px;
}

.text-box h4 {
    color: white;
}

.text-box a:link {
    color: rgb(255, 0, 0);
}

.text-box a:active {
    color: rgb(255, 0, 0);
}

.text-box a:hover {
    color: rgb(255, 255, 255);
}

.text-box a:visited {
    color: rgb(255, 0, 0);
}

.navbar-inverse .navbar-header .navbar-brand {
    color: white;
}

.button-text {
    color: white;
    background-color: black;
    border-style: none;
}

.button-text:hover {
    color: black;
    background-color: red;
}

.input-text {
    background-color: rgb(48, 48, 48);
    height: 24px;
    font-size: 16px;
    border-style: solid;
    margin: 10px;
}

.input-text[type='radio'] {
    visibility: hidden;
}

.input-text[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 10px;
    left: -3px;
    position: relative;
    background-color: #000000;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.input-text[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 10px;
    left: -3px;
    position: relative;
    background-color: #ff0000;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid rgb(255, 255, 255);
}

.form-text-box {
    padding: 20px;
}

.form-table { 
    display: table;
    padding: 20px;
}
.form-table p { display: table-row;  }

.form-table label { 
    display: table-cell; 
    font-size: 18px; 
    font-weight: lighter;
    color: white;
}
.form-table input { display: table-cell; }

.form-table h4 {display: table-cell; }


/*Images stuff, used to click to zoom on images, 
  cleaner borders, thumbnail, etc.*/
.images img {
    border: 5px solid rgb(12, 12, 12);
    border-width: 2px;
    padding: 2px;
    cursor: pointer;
}

.images img:hover {
    border-width: 3px;
    padding: 2px;
}

#image-viewer {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin:auto;
    display: block;
    width: 100%;
    max-width: 1152px;
}
.modal-content {
    animation-name: zoom-in;
    animation-duration: 0.3s;
}
@keyframes zoom-in {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

#image-viewer .close {
    position: absolute;
    top: 50px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
#image-viewer .close:hover,
#image-viewer .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 1152px){
    .modal-content {
        width: 100%;
    }
}