
html {
    /* overflow: hidden; */
    /* height: 100%; */
}

body {
    /* overflow: auto; */
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: white;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  letter-spacing: 0.03em;
  font-size: 1.1em;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

a {
    color: white;
    text-decoration: none;
}

h1 {
    font-size: 1.1em;
    font-weight: 400;
}
  
.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; 
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 630px;
    cursor: pointer;
}

@media only screen and (min-width: 600px) {
    .center {
        width: 45%;
    }
}

.page_01 {
    position: relative;
    background-color: black;
    height: 100%;
}

.page_02 {
    position: relative;
    background-color: black;
    height: 100%;
}

@media only screen and (max-height: 800px) {
    .page_02 {
        height: 140%;
    }
}

@media only screen and (max-height: 600px) {
    .page_02 {
        height: 160%;
    }
}

@media only screen and (max-height: 500px) {
    .page_02 {
        height: 250%;
    }
}

.page_02 .center {
    width: 90%;
}

@media only screen and (min-width: 600px) {
    .page_02 .center {
        width: 55%;
    }
}

img {
    width: 100%;
    height: auto;
}

/* .contact-wrap {
    padding: 2em;
    display: block;
} */

/* .contact-wrap a {
    font-weight: 100;
    transition: 0.3s;
} */

/* .contact-wrap a:hover {
    color: #F6C144;
} */

.contact-label {
    font-weight: 400;
}

.contact-link {
    font-weight: 100;
    transition: 0.3s;
}

.contact-link:hover {
    color: #F6C144;
}

footer {
    font-size: 0.8em;
    position: absolute;
    bottom: 2em;
    width: 100%;
    color: #999;
    z-index: 10;
}

.footer-element {
    /* padding: 0 2em; */
}

.footer-divider {
    padding: 0 0.3em;
}

footer a {
    color: #999;
    font-weight: 500;
}

.overlay-top {
    position: fixed;
    height: 300px;
    top: 0;
    right: 0;
    left: 0;
    z-index: 8;    
    background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

.overlay-bottom {
    position: fixed;
    height: 300px;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;    
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
}

@media only screen and (max-height: 500px) {
    .overlay-top {
        height: 100px;
    }
    .overlay-bottom {
        height: 100px;
    }    
}

header svg {
    /* transition: 0.3s; */
    animation: float 4.5s ease-in-out infinite;
}

/* header svg:hover {
    transform: translate(8px, 0);
} */

.down-indication {
    fill: #777;
    width: 30px;
    position: absolute;
    bottom: 2em;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}

.down-indication {
    transition: 0.3s;
    cursor: pointer;
}

.down-indication:hover {
    transform: translate(0, 8px);
}

@keyframes float {
	0% {
		transform: translatey(0px) rotate(0deg);
	}
	50% {
		transform: translatey(-15px) rotate(-0.6deg);
	}
	100% {
		transform: translatey(0px)rotate(0deg);
	}
}

#particles-js {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}