/*
 
    |                                 |                   |      TM
    |______   ______   ______   ______|           ______  |___
    |      | |      | |      | |      | |      | |______  |
    |      | |______| |______| |______| |______|  ______| |______

    Copyright (C) 2019 Hoodust Enterprises
    nightvisiongame.com/nightstyle.css
    
*/


/* main */
body
{
    font-family: 'Barlow Condensed', sans-serif;
    background-color:black;
    margin: 0;
    padding: 0;
}

img.bg
{
    max-height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

img.logo
{
    transition: top 0.7s;
    position:fixed;
    margin:auto;
    width:20%;
    height:auto;
    top: -10%;
    margin-left:1%;
    margin-right:1.1%;
    padding-top:.5%;
    z-index:4;
}

img.ghostlogo
{
    position:fixed;
    width:5%;
    height:auto;
    bottom: 1%;
    right: .6%;
    z-index:4;
}

.title
{
    transition: opacity 0.7s;
    position: absolute;
    
    width: 55%;
    height: auto;
    
    margin-top: 13.5%;
    margin-left: 7%;
    z-index:2;
}

.titlebox
{
    transition: opacity 0.7s;
    position: absolute;
    
    margin-top: 19.1%;
    margin-left: 68%;
    margin-right: 12%;
    z-index:2;
}

.talkybox-left
{
    transition: opacity 0.7s;
    position: absolute;
    
    text-align: right;
    margin-top: 10%;
    margin-left: 12%;
    margin-right: 68%;
    z-index:2;
}

.talkybox-right
{
    transition: opacity 0.7s;
    position: absolute;

    text-align: left;
    margin-top: 10%;
    margin-left: 45%;
    margin-right: 8%;
    z-index:2;
}

.talkycolumn-center
{
    transition: opacity 0.7s;
    position: absolute;
    
    text-align: center;
    margin-top: 10%;
    margin-left: 40%;
    margin-right: 40%;
    z-index:2;
}

.talkycolumn-right
{
    transition: opacity 0.7s;
    position: absolute;
    
    text-align: left;
    margin-top: 10%;
    margin-left: 68%;
    margin-right: 12%;
    z-index:2;
}


/* text */ 
h1
{
    font-size: 475%;
    font-size: 2vw;
    line-height: 121%;
    color: rgb(255,194,6);
}

h2
{
    font-size: 465%;
    font-size: 1.9vw;
    line-height: 121%;
    color: white;
}

p1
{  
    font-size: 300%;
    font-size: 1.3vw;
    line-height: 121%;
    color: white;    
}

p2
{  
    font-size: 300%;
    font-size: 1.3vw;
    line-height: 90%;
    color: white;    
}

c1
{
    font-size: 700%;
    font-size: 3vw;
    color: rgb(255,194,6);
}

#linkP a:link, #linkP a:visited, #linkP a:active
{
    text-decoration: none;
    color: rgb(255,194,6);
}

#linkP a:hover
{
    text-decoration: none;
    color: white;
}

.pulsate
{
    -webkit-animation: pulsate 3s ease-in-out;
    -webkit-animation-iteration-count: infinite;
    color: white;
}
@-webkit-keyframes pulsate
{
    0%    { color: white; }
    50%   { color: black; }
    100%  { color: white; }
}


/* navbar */
#navbar 
{
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    height: 10%;
    height: 10vh;
    
    /*
    top: -10%;
    top: -10vh;
    transition: top 0.5s;
    */
    
    width: 100%;
    display: block;
    transition: background-color 0.7s;
    z-index:3;
}

#navbar a 
{
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding-right: 2%;
    padding-left: 2%;
    padding-top: 1.3%;
    padding-bottom: 1.6%;
    text-decoration: none;
    font-size: 500%;
    font-size: 4vh;
}

#navbar a:hover 
{
    background-color: rgb(255,194,6);
    color: black;
}


/* gallery */
.grid
{
    transition: opacity 0.7s;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 1%;
    grid-auto-rows: minmax(8, 8);
    margin-top: 18%;
    margin-left: 11.2%;
}

.tb1a,.tb1b,.tb1c,.tb1d,.tb1e,.tb1f,.tb1g,.tb1h,
.tb2a,.tb2b,.tb2c,.tb2d,.tb2e,.tb2f,.tb2g,.tb2h
{
    overflow: hidden;
    width: 9vw;
    height: 9vw;
    margin-bottom: 4%;
    background-color: black;
    opacity: 1;
    z-index: 1;
    text-align: center;
    transition: .3s;
}

.tb1a:hover,.tb1b:hover,.tb1c:hover,.tb1d:hover,.tb1e:hover,.tb1f:hover,.tb1g:hover,.tb1h:hover,
.tb2a:hover,.tb2b:hover,.tb2c:hover,.tb2d:hover,.tb2e:hover,.tb2f:hover,.tb2g:hover,.tb2h:hover
{
    /*opacity: 0.6;*/
    transition: .3s;
    box-shadow: 0px 0px 18px rgba(255,194,6,1);
}

.tb1a,.tb1b,.tb1c,.tb1d,.tb1e,.tb1f,.tb1g,.tb1h {grid-row:1}

.tb2a,.tb2b,.tb2c,.tb2d,.tb2e,.tb2f,.tb2g,.tb2h {grid-row:2}

.tb1a,.tb2a {grid-column:1;}
 
.tb1b,.tb2b {grid-column:2;}
 
.tb1c,.tb2c {grid-column:3;}
 
.tb1d,.tb2d {grid-column:4;}
 
.tb1e,.tb2e {grid-column:5;}
 
.tb1f,.tb2f {grid-column:6;}
 
.tb1g,.tb2g {grid-column:7;}
 
.tb1h,.tb2h {grid-column:8;}

.gallery
{
    display:block;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}


/* misc */
#road
{
    background-image: url("images/road.jpg");
    background-repeat: repeat-x;
    background-size: contain;
    padding-bottom: .3%;
    text-align: center;
}

img.footer
{
    height: 40%;
    width: 100%
    background-image: url("images/black_shim.jpg");
    background-repeat: repeat;
    background-size: contain;
}

.hoologo
{
    position: absolute;
    
    width: 65%;
    height: auto;
    
    margin-top: 5%;
    margin-bottom: 13%;
    margin-left: 8%;
    margin-right: auto;
    z-index:2;
}

.legalbox
{
    transition: opacity 0.7s;
    background-color: transparent;
    position: absolute;
    
    margin-top: 4%;
    margin-left: 68%;
    margin-right: 12%;
    z-index:2;
    text-align: justify;
}

.button
{
    margin-top: .5vh;
    background-color: black;
    color: rgb(255,194,6);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 100%;
    font-size: 2.4vh;
    font-family: 'Barlow Condensed', sans-serif;
    border: 0px;
    transition: 0.3s;
    cursor: pointer;
}

input.button:hover
{
    box-shadow: 0px 0px 18px rgba(255,194,6,.6);
}

input.email
{
    font-size: 100%;
    font-size: 2.4vh;
}

cpyrt
{
    color: rgb(63,63,63);
    font-size: 255%;
    font-size: 2vh;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: rgb(255,194,6);
}


/* Mobile and Narrow Browser Overrides */
@media screen and (max-width: 1900px)
{    
    img.bg
    {
        max-height: auto;
        width: 100%;
        object-position: center;
        object-fit: fill;
    }

    p2
    {  
        font-size: 300%;
        font-size: 1.3vw;
        line-height: 40%;
        color: white;    
    }

    #navbar 
    {
        height: 10%;
        height: 4vh;
    }
    
    #navbar a
    {
        font-size; 250%;
        font-size: 2vh;
    }
    
    cpyrt
    {
        font-size: 150%;
        font-size: 1vh;
    }
}
