
* {
    margin: 0;
    padding: 0;
}

:root{
    --background-color: #0D0D0D;
    --primary-color: #04BFAD;
    --primary-color-dark: #027368;
    --secondary-color: #D90404;
    --secondary-color-dark: #590202;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    height: 100vh;
    color: white;
    font-family: "Gilroy ExtraBold", system-ui, sans-serif;
    font-style: normal;
    font-weight: bolder;
    -webkit-font-smoothing: antialiased;
    -webkit-font-kerning: normal;
    -webkit-text-size-adjust: 100%;
    /*background-color: var(--background-color);*/
}

.header {
    color: #fff;
    transform: rotateX(-10deg) rotateY(20deg);
    z-index: 1;
    margin-top: -30vh;
    padding:5px;

}
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: bold;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color-dark)
}

/*NavMenu Settings*/

.blog-nav {
    transform: translateX(-450vw);
    transition: .9s ease-in-out;
    font-size: 4.25rem;
    line-height: 1.2;
    position: fixed;
    text-transform: uppercase;
    text-align: center;

}
.blog-nav li {
    position: fixed;
    display: inline-block;
    padding: 5px;
    margin: 5px;
    margin-top: 40vh;
    font-weight: 500;
}
.blog-nav li a {
    color: #fff;
    transition: .9s ease-in-out;
    padding: 10px;
    border: 1px solid white;
    text-transform: uppercase;
    font-weight: bolder;

}
.blog-nav li.page_item {
    transition: .9s ease-in-out;
}
.blog-nav li.page_item {
    position: relative;
    color: transparent;
    cursor: pointer;
}

.blog-nav li.page_item::before {
    content: '';
    display: block;
    position: fixed;
    top: 49%;
    left: -10%;
    right: -10%;
    height: 4px;
    border-radius: 4px;
    margin-top: -2px;
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}

.blog-nav li.current_page_item {
    background-color: var(--secondary-color-dark);
}
.blog-nav li.page_item:hover {
    color: #fff;
    background-color: rgba(2,115,104, .5)
}

.blog-nav.show {
    position: fixed;
    margin: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center ;
    transform: translateX(100%);
    transform: rotateX(/*-10deg*/0) rotateY(/*20deg*/0) !important;
    z-index: 1;
}

/*THREEJS Settings*/

canvas.webgl {
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
    z-index:-1;
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100vw;
    min-height: 100vh;
}
.container {
    height: 100vh;
    display: grid;
    place-items: center;
}
.content {
    height: 100vh;
    width: 100vw;
    margin-top: -10%;
    display: grid;
    place-items: center;
    background-color: var(--background-color);
}
.blog-footer{
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    height: 100vh;
}

/*Content Settings*/

.blog-post-title {
    font-size: 4.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    transform: rotateX(-10deg) rotateY(20deg);
    margin-bottom: 5rem;
    padding: 5px;
    font-weight: bolder;
}

.wrapper {
    padding: 20% ;
    margin-top: 5rem;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5)
}

/*Navbar Burger Settings*/

.navburger {
    cursor: pointer;
    display: flex;
    position: fixed;
    /* z-index: 1000; */
}
svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.active svg {
    transform: rotate(90deg);
}
path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
path:nth-child(1) {
    transform-origin: 36% 40%;
}
path:nth-child(2) {
    stroke-dasharray: 29 299;
}
path:nth-child(3) {
    transform-origin: 35% 63%;
}
path:nth-child(4) {
    stroke-dasharray: 29 299;
}
path:nth-child(5) {
    transform-origin: 61% 52%;
}
path:nth-child(6) {
    transform-origin: 62% 52%;
}
.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}
.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}
.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}
.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

#arrowup {
    display: flex;
    position: sticky;
    align-items: baseline;
    z-index: 3000;
}


/*Mobile Resize*/

.header, a{
	z-index: 1000000 !important;
	transform: rotateX(/*-10deg*/0) rotateY(/*20deg*/0) !important;
}


@media screen and (max-width: 480px) {
    .text {
        font-size: 16px;
    }
}

header, a {
	z-index: 1000000 !important;
}
