/* 
	author: Leo Katz
	website: www.leoktz.com
	company: TriXYZ
	company website: www.trixyz.com
*/

html,
body {
    margin: 0;
    padding: 0;
    background: #000000;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
}

*,
*:hover,
*:active,
*:focus {
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

#menu {
    position: fixed;
    bottom: 60px;
    z-index: 10000;
    display: flex;
    width: 590px;
    text-align: center;
    margin: 0 0 0 -280px;
    left: 50%;
    padding: 24px 28px;
    background: #0005;
    justify-content: center;
    border-radius: 100px;
    text-transform: uppercase;
    font-family: sans-serif;
    backdrop-filter: blur(10px);
}

#menu nav {
    display: flex;
}

nav a {
    color: #fff;
    padding: 0 12px;
    font-size: 11px;
    transition: all ease-in-out 0.3s;
}

nav a.current {
    color: #fff;
    padding: 0 12px 0 24px;
    font-size: 11px;
    position: relative;
    display: block;
}

nav a.current:before {
    content: "/";
    left: 0;
    color: #fff;
    padding: 0 12px;
    font-size: 11px;
    position: absolute;
    display: block;
}

#webgl,
#experience {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    top: 0;
    left: 0;
    background: none;
}

#content {
    display: block;
    overflow: hidden;
    background: none;
    z-index: 10;
}

div#top-section {
    z-index: -1;
    position: relative;
}

#experience > button{
    z-index: 100000;
}