
/* COMMON STYLING ACROSS ALL PAGES*/
/* Using mobile-first approach */

body {
  background-image: url("/common/stars.gif");
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  background-color: black;
  color: white;
  font-family: Verdana;
  font-size: 8px;
}
/* Desktop styled bigger */
@media (hover:hover) {
        body {
            font-size: 16px; 
        }
  }

/* 0GraviT Zone animated text */
.zoneText {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 100vw;
    max-height: 20vh;   
}
.zoneText-el {
    flex: 1;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items:center;
}
.zoneText h1{
    margin: 0 auto;
    font-size: 5em;
    background-image: linear-gradient(to right, rgb(20, 9, 28), rgb(195, 0, 255), rgb(20, 9, 28));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: textgrad 5s infinite;
    animation: textgrad 5s infinite;
    -webkit-text-stroke: 0.05em black;
}
@-webkit-keyframes textgrad {
    0%{background-position:0% 50%}
    50%{background-position: 100% 50%}
    100%{background-position:0% 50%}
}
@keyframes textgrad {
    0% {background-position: 0% 50%}
    50% { background-position: 100% 50%}
    100%{background-position:0% 50%}
}

/* Navigation Bar Styling */
.navBar{
    margin: 0 auto;
    max-width: 100vw;
    max-height: 20vh;
}
.navBar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #232323;

    border-radius: 1em;
    display:flex;
    align-content: center;
    justify-content: center;
    align-items:center;
}
.navBar ul li a {
    display:block;
    color: white;
    text-decoration: none;
    font-weight:900;
    margin: 0;
    padding: 0;
}
.navBar ul li a:hover{
    background-color: #555555;
    border-radius: 0.5em;
}
.navBar h2{
    margin:0.5em;   
}

/* Title on each page */
.pageTitle{
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: 2em;
}

/* Footer Styling */
.bottomBar {
    margin: 1em auto;
    padding:1em;
    max-height:30vh;
    max-width: 80vw;
    text-align: center;
    background-image: radial-gradient(150% 100% at 50% 10%, #000314 37%, #6633EE 70%, #FFFFFF 100%);

    background-size: 200% 110%;
    animation: footergrad 5s linear infinite;
    border-radius: 5em;
}
.bottomBar-row {
    display: flex;
    flex-direction:row;
    width: 90%;
    max-height: 100%;
    margin: 0 auto;
    padding: 1em;
    align-items:center;
    justify-content:center;
    align-content:center;
}
.bottomBar-section {
    max-width:50%;
    max-height: 100%;
    margin: 0 1em;
}
.bottomBar-logo {
    margin-right: auto;
    max-width: 50%;
    max-height: 50%;
    margin: 0 1em;
}
.bottomBar-logo img {
    max-width: 75%;
    max-height: 50%;    
}
.bottomBar a:link, a:hover, a:visited, a:active{
    color:white;
    font-size:1.25em;
}

@keyframes footergrad {
    0% {background-position: 0% 50%}
    100%{background-position:200% 50%}
}

/* Page not Found */
.notFound{
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}