/* ----------- 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;
}
/* ----------- NAVIGATION ------------*/
body {
 font-family: Arial, Helvetica, sans-serif;
 margin: 0px;
 padding: 0px;
 background-color: #000000;
}
.NavLineBox{
    width: 100vw;
    overflow: hidden;
}

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: 100vw;
 grid-auto-rows: 10em 100vh ;
 gap: 0.0em;
 right: 10px;

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

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

.box1{
    display: flex;
    justify-content: center;
    align-content: center;
}

.title{
    font-family: 'OrbitronBold';
    color: #D71818;
    font-size: 4rem;
}
.box2{
    display: flex;
    justify-content: center;
    align-content: flex-start;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row;
}

.socialTab{
    width: 80vw;
    height: 10em;
    margin: 1em;
    background-color:#0f0f0f;
    border: 2px solid #D71818;
}

.socialTabContent{
    display: flex;
    width: 100%;
    height: 100%;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.Logo{
    margin: 1em;
    display: flex;
    justify-content: flex-start;
}
.Logo image{
    object-fit:cover;
}

.SocialTitle{
    font-family: 'OrbitronBold';
    color: #ff0000;
    font-size: 2rem;
}

.SocialTitle h2{
    margin: 0.3em;
}

.SocialTitle p{
    font-size: 25px;
    display: flex;
    margin: 0.1em;
    justify-content: center;
}

.details{
    color: #D71818;
}
.details2{
    color: white;
}

