body {
    margin: 0;
}
.main-shit {
    position: static;
    height: 100vh;
    width: 100vw;
}
.overlay {
    background-color: rgba(20,20,20,0.7);
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    z-index: 99;
}
.noselect {
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none; 
}

#space {
    position: fixed;
    height: 110%;
    width: 110%;
    top: -5%;
    left: -5%;
    overflow: hidden;
}

.layer {
    height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: repeat;
    z-index: -101;
}

.layer-1 {
    background: url('../assets/layer1.png');
    background-position: center;
    background-repeat: repeat;
}

.layer-2 {
    background: url('../assets/layer2.png');
}

.layer-3 {
    margin-left: 65%;
    margin-top: 18.5%;
    z-index: -101;
    height: 1200px;
    width: 1200px;
    background-repeat: no-repeat;
    animation: rotation 289s infinite linear;
    transform-origin: 50% 50%;
    display: block;
}

/*New Nav*/

nav {
    display: grid;
    position: relative;
    grid-template-columns: 3fr repeat(4, max-content);
    grid-column: auto;
    grid-auto-rows: 2fr 10px;
    align-items: center;
    text-align: center;
    z-index: 100;
/*    text-transform: uppercase;*/
    padding: 0em 1em 0em 1em;
}

nav div {
    display: inline;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 300;
    color: rgb(200, 200, 200);
    text-decoration: none;
    padding: 0em .75em 0em .75em;
}

.logo {
    display: grid;
    max-width: 200px;
    height: 10vh;
    background-image: url(../assets/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: rgb(200, 200, 200);
    text-shadow: 0 0 5px #fff;
}
nav a:hover {
    text-decoration: none;
    color: rgb(200, 200, 200);
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff;
}

nav hr {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 7;
    align-self: start;
    align-content: center;
    width: 85%;
    height: 2px;
    background-image: linear-gradient(to right, rgba(200, 200, 200, 0), rgba(200, 200, 200, 0.75), rgba(200, 200, 200, 0));
    border: 0;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
.main-content {
    display: block;
    position: relative;
    z-index: 100;
}
