/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* vn24-1 */

body{  
  color: #888;
  background: #171B21;
  font-family: 'Source Sans Pro', sans-serif;
}

a{
  text-decoration: none;
}

.container{
  width:73%;
  margin: 0 auto;
  position: relative;
}

header{
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;  
  position: fixed;
  z-index: 10;
}

header h1{  
  font-size: .8rem;
  padding: 1rem 1.3rem;
  border: 1px solid #00FFD4;
  float: left;
  margin-top: 1%;  
  transition: border-color 1s, background 1s;
}

header a{
  color:#00FFD4;
  transition: color 1s;
}

header > a:hover{
  color: #171B21;
}

header > a:hover h1{
  background: #00FFD4;
  border-color: #00FFD4;
}

nav{
}

nav ul{
  display: block;
  float: left;
  margin: .7rem 0;
}

nav ul li{
  margin-top: 1rem;   
}

nav ul li.inner{
  margin-left: .8rem;
} 

nav ul li a{
  padding: .4rem .8rem;
  transition: background .3s;
  font-size: .8rem;
}

nav ul li a:hover{
  background: rgba(123, 123, 123, 0.12);
}

main{
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

#front{
  height: 100vh;
}

#front img{
  width:200px;
  position: absolute;
  top: 30vh;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

article{
  text-align: center;
  background: #1d2229;
  border-radius: 50%;
  height: 18rem;
  width: 18rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 6rem;
  border: 2px dashed #333;
}

#worlds{
  padding: 4rem 0 8rem;
}

.world{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

article ul li{
  font-size: .9rem;
  line-height: 1.3rem;
  color: #fff;
  font-weight: 300;
}

h2{
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

footer{
  background: url(../img/land.png) repeat-x #8f8f8f;
  height: 13rem;
  position: relative;
}

footer .text{
  line-height: 1rem;
  color: #00FFD4;
  font-size: 0.8rem;
  text-align: center;
  padding: 1.8rem 0rem 2rem;
  position: absolute;
  top: 6rem;
  left: 20%;
  right: 20%;
}

nav a, article ul li span{
  color: rgba(202, 255, 10, 0.97);
}

article p{
  margin: .5rem .3rem;
  line-height: 1.2rem;
}

.overlay-wrapper{
  position: fixed;
  z-index: 11;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.84);
}

.overlay{
  position: absolute;
  top: 25%;
  text-align: center;
  width: 100%;
  font-size: 5rem;
  color: #00FFD4;
  font-family: 'Quicksand', sans-serif;
}

.overlay a{
  display: block;
  font-size: 2rem;
  color: #fff;
  padding: .8rem 1rem;
  width: 8rem;
  margin: 0 auto;
  margin-top: 2rem;
}

.overlay a:hover{
  background: rgba(123, 123, 123, 0.12);
}

.no-scroll{ 
  overflow-y: hidden; 
}

@media screen and (max-width: 824px) {
  header {
    position: relative;
    margin: 2rem 0 0 0;
    text-align: center;
  }
  header h1{
    float: none;
    width: 8rem;
    margin: 0 auto;
  }
  nav ul {    
    float: none;
  }
  
  article{
    height: 17rem;
    width: 17rem;
  }
}