/* ----------- Main Body ------------*/
@font-face {
 font-family: 'OrbitronRegular';
 src: url(../Fonts/Orbitron-Regular.ttf);
}
@font-face {
    font-family: 'OrbitronBold';
    src: url(../Fonts/Orbitron-Bold.ttf);
}
*{
 box-sizing: border-box;
 background-color: #0f0f0f;
}
/* ----------- NAVIGATION ------------*/
body {
 font-family: Arial, Helvetica, sans-serif;
 margin: 0px;
 padding: 0px;
 background-color: #000000;
}

ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 overflow: hidden;
 background-color: #0f0f0f;
}

ul li {
 float: left;
}

ul li a {
 display: block;
 color: white;
 text-align: center;
 padding: 20px 30px;
 text-decoration: none;
}

ul li a:hover {
 background-color: #300000;
 color: #ff0000;
 cursor: crosshair; /*Changes the mouse cursor when hovering on the Navbox*/
}

.PortfolioSubMenu{
    display: none; /*Hides submenu from the portfolio tab*/
}

.NavLineBox ul li:hover .PortfolioSubMenu{ /*Shows submenu from the portfolio tab*/
    display: block;
    position: absolute;
}

#NavMenuActive{
 border-bottom: 6px solid #D71818;
 color: #D71818;;
 border-radius: 1px;
 margin-bottom: 1px;
 position: relative;
 opacity: 100%;
}
/* ----------- CSS GRID CONTAINER ------------*/

.grid-container {
 display: grid;
 background-color: #000000;
 grid-template-columns: 1fr 1fr 1fr;
 grid-auto-rows: 15em 100vh;
 gap: 0.0em;
 right: 10px;

 margin-top: 1px;
 margin-left: 1px;
 margin-bottom: 1px;

 grid-template-areas:
"box-1 box-1 box-1 "
"box-2 box-3 box-4";
}

/* ----------- CSS GRID CONTENT ------------*/

div.box1 h1 {
 color: #D71818;
 background:none;
 font-family: 'OrbitronRegular';
 font-size: 12.5em;
 display: flex;
 overflow:auto;
 margin: auto;
 align-content:center;
 justify-content: center;
 margin-top: 0.2em;
 
 
}
/* ----------- CONTENT OVERLAYS ------------*/
.PortfolioTitle{
    align-content: center;
    color: #D71818;
    background: none;
    text-align: center;
    text-transform: capitalize;
    height: 100%;
    width: 100%;
    font-family: 'OrbitronRegular';
    font-size:6.25em;
    word-wrap: break-word;
    cursor: pointer;
    margin: auto;
}
div .OverlayBG a{
     text-decoration: none;
}

.OverlayBG{ /*Default darkening background for Box3 if not hovered*/
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0%;
    transition: opacity 230ms ease-in-out; /*Smooth animation transistion*/
}

.OverlayBG:hover{ /*Default darkening background for Box3 when hovered*/
    width: 100%;
    height: 100%;
    opacity: 60%;
    overflow: hidden;
}

.box1 {
 border-top: 1px solid #D71818;
 border-bottom: 1px solid #D71818;
 background-color: #000000;
 align-content: flex-end;
 overflow: hidden;
}

.box2{
 padding: auto;
 border-right: 1px solid #D71818;
 background:url(../Videos/GIF/MemoryCard_Wireframe_1024.gif);
 background-size: cover;
 background-attachment:local;
 background-position-x: center;
}

.box3{
 padding: auto;
 border-right: 1px solid #D71818;
 background:url(../Images/DefaultCameraman_PLACEHOLDER.jpg);
 background-size: cover;
 background-attachment:local;
 background-position-x: center;
}

.box4{
 border-left:1px solid #D71818;
 padding: auto;
 border-right: 1px solid #D71818;
 background:url(../Images/jeremy-hynes_PLACEHOLDER.jpg);
 background-size: cover;
 background-attachment:local;
 background-position-x: center;
}

