* {
    margin: 0;
    padding: 0;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-scrollbar { display: none; }

button:focus {  outline:0; }

ul, ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

body {
    position: relative;
    overflow: auto;
    width: 100%;
    height: 100%;
    
    -webkit-text-size-adjust: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

/* ================================== */
/*               Fonts                */
/* ================================== */

@font-face {
    font-family: 'Rocket';
    src: url('../fonts/RocketScript.ttf')  format('truetype');
    font-style: normal;
    font-weight: 300;
}

h1 {
    font-family: 'Rocket', sans-serif;
    font-weight: 300;
    line-height: 0.8;
}

/* ================================== */
/*             Navigation             */
/* ================================== */

nav .bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: #ffffff;
    opacity: 0;
}

nav > ul, nav > #show_menu {
    position: fixed;
    top: 0;
    padding: 20px;
}

nav #show_menu {
    margin-top: 3px;
    right: 0;
}

nav #show_menu button {
    padding: 0 5px;
    background-color: transparent;
    border: none;
    color: #000000;
    font-size: 30px;
    cursor: pointer;
    transition: 0.5s;
}

nav #show_menu button:hover {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

nav #lang li {
    display: inline-block;
}

nav #lang li button {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    border: none;
    background-color: transparent;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
}

nav #lang li button:hover {
    text-decoration: underline;
}

nav #lang li button.current {
    background-color: #000000;
    color: #ffffff;
}

/* ================================== */
/*                Menu                */
/* ================================== */

nav #menu {
    display: block;
    position: fixed;
    left: 0;
    top: -100%;
    top: -100vh;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background-color: rgba(0,0,0,0.9);
    font-size: 3em;
    font-weight: 100;
    text-align: center;
    overflow: scroll;
}

nav #menu ul {
    position: relative;
    padding: 20px 0;
}

nav #menu li {
    padding: 10px 0;
    cursor: pointer;
    transition: 0.5s;
}

nav #menu li:hover {
    text-shadow: 0 0 20px #ffffff;
    transform: scale(1.2);
}

nav #menu li a {
    color: inherit;
    text-decoration: none;
}

/* ================================== */
/*               Start                */
/* ================================== */

.center_box {
    position: relative;
    top: -350px;
    width: 700px;
    height: 700px;
    margin: 0 auto;
    margin-top: 50vh;
    /* border: 1px #888888 dashed; */
}

.main_title {
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
}

h1 {
    padding-left: 50px;
    padding-bottom: 36px;
    font-size: 60px;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    color: #ffffff;
}

.social {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 100px;
    left: 0;
    text-align: center;
    /* border: 1px #ff0000 dashed; */

}

.social button {
    position: relative;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    font-size: 40px;
    opacity: 0.75;
    transition: 0.5s;
}

.social button:hover {
    opacity: 1;
}

/* ================================== */
/*           Floating Items           */
/* ================================== */

.floating_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating_box .items {
    position: absolute;
    bottom: -30%;
    left: -33%;
    width: 76%;
    height: auto;
}

/* ================================== */
/*               Layout               */
/* ================================== */

.background {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

section:first-of-type {
    margin-top: 100vh;
    box-shadow: 0 0 50px #444444;
}

section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    color: #222222;
    background-color: #ffffff;
    padding: 90px 90px 90px 90px;
    overflow: hidden;
    display: table;
    /* box-shadow: 0 0 50px #aaaaaa; */
    overflow: hidden;
}

section:nth-of-type(2n) {
    color: #000000;
    background-color: #eeeeee;
}

section.bg {
    color: #ffffff;
    background-color: rgba(0,0,0,0.3);
}

section.bg .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000000;
    z-index: -1;
}

#bands .bg_image {
    height: 200%;
}

#contact {
    color: #eeeeee;
    background-color: rgba(0,0,0,0.5);
}

#contact .bg_image {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #000000;
}

#contact .text_box p {
    line-height: 1.75;
}

/* ================================== */
/*                Post                */
/* ================================== */

.text_box {
    padding: 30px 0;
    display: table;
    font-weight: 300;
    text-align: justify;
}

h2 {
    width: 100%;
    font-size: 2em;
    font-weight: 100;
    text-align: right;
}

.text_box .photo {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.text_box figure {
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 1px solid #aaaaaa;
}

.text_box p {
    padding-left: 60px;
    display: table-cell;
    vertical-align: middle;
    line-height: 1.5;
}

.text_box p a {
    color: inherit;
}
.text_box p a:hover {
    opacity: 0.7;
}

/* ================================== */
/*            Publications            */
/* ================================== */

nav .player {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
}

.publications {
    margin-top: 60px;
    overflow: hidden;
}

.publications .thumb {
    float: left;
    width: 31%;
    margin: 1%;
}

.publications .thumb figure {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
    /* background-size: cover; */
    background-size: 101% 101%;;
    background-position: center;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 10px #888888;
}

.publications .thumb figure button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 4em;
    border: none;
    color: #ffffff;
    color: rgba(255,255,255,0.9);
    transition: 0.5s;
    cursor: pointer;
}

.publications .thumb figure button.audio_play {
    background-color: transparent;
    opacity: 0.5;
}
.publications .thumb figure button.audio_play:hover {
    opacity: 1;
    background-color: rgba(0,0,0,0.25);
}

.publications .thumb figure button.audio_pause {
    display: none;
    color: rgba(255,255,255,0.8);
    background-color: rgba(0,0,0,0.5);
}
.publications .thumb figure button.audio_pause:hover {
    color: rgba(255,255,255,1);
}


.publications .thumb figure button i {
    text-shadow: 0 0 10px #000000; 
}

.publications .thumb a {
    color: inherit;
    text-decoration: none;
}
.publications .thumb a:hover {
    text-decoration: underline;
}

.publications .thumb p {
    font-weight: 300;
}

.publications .thumb p.author {
    margin-top: 2px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* ================================== */
/*              Gallery               */
/* ================================== */

button.show_more {
    width: 98%;
    margin: 0 1%;
    margin-top: 20px;
    text-align: center;
    background-color: transparent;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.5;
}
button.show_more:hover { opacity: 1; }

.galleries {
    margin-top: 30px;
}

.galleries .thumb {
    position: relative;
    margin: 1%;
    width: 31%;
    height: 25vw;
    float: left;
    border-radius: 3px;
    box-shadow: 0 0 10px #000000;
    cursor: pointer;
    overflow: hidden;
}

.galleries .thumb figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.galleries .thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
}

.galleries .thumb .video_play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #666666;
    background-color: transparent;
    border: none;
    font-size: 3em;
    text-shadow: 0 0 10px #000000;
    cursor: pointer;
    transition: 0.25s;
}

.galleries .thumb:hover .video_play {
    color: #ffffff;
}

.galleries .thumb p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    color: #dddddd;
    background-color: rgba(0,0,0,0.75);
    font-weight: 300;
    opacity: 0;
    transition: 0.5s;
}

.galleries .thumb:hover figure {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}

.galleries .thumb:hover p {
    opacity: 1;
}

/* ================================== */
/*            Gallery ZOOM            */
/* ================================== */

#zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
}

#zoom figure, #zoom iframe {
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
    box-shadow: 0 0 20px #000000;
}
#zoom iframe {
    display: block;
    margin-left: 10px;
}

#zoom button.close {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    margin: 20px;
    color: #ffffff;
    background-color: transparent;
    border-radius: 50%;
    border: none;
    font-size: 30px;
    cursor: pointer;
    text-shadow: 0 0 10px #000000;
}
#zoom button.close:hover {
    opacity: 0.7;
}

#zoom button.close i {
    position: relative;
    top: -2px;
}

#zoom p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 7px 36px;
    color: rgba(255,255,255,0.75);
    background-color: rgba(0,0,0,0.75);
    border-radius: 0 5px 0 3px;
    font-weight: 300;
    text-align: left;
}

/* ================================== */
/*               Footer               */
/* ================================== */

footer {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    font-weight: 300;
    opacity: 0.4;
    text-shadow: 0 0 20px #000000;
}
footer a {
    color: inherit;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

#test {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 30px 50px;
    color: #000000;
    background-color: aquamarine;
}