/*---BACKGROUND AND PULSE---*/

body{
    background: rgb(103,149,149);
    background: radial-gradient(circle, rgba(103,149,149,1) 0%, rgba(250,250,250,1) 90%);
  
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    font-family: "Avenir";
    color: white;
}

#pulse_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgb(63,109,109,1);
    background: radial-gradient(circle, rgba(63,109,109,1) 0%, rgba(250,250,250,1) 90%);

    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    animation: pulse 10s infinite;
}

@keyframes pulse {
      0% { opacity: 1 }
     50% { opacity: 0 }
    100% { opacity: 1 }
}

/*---CURSOR---*/


* {
	cursor: url('cursor.png') 24 24, default;
}


/*---FADE ON LOAD/UNLOAD---*/

#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: rgb(103,149,149);
    background: radial-gradient(circle, rgba(103,149,149,1) 0%, rgba(250,250,250,1) 90%);
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes fade-out {
    from { opacity: 1 }
      to { opacity: 0 }
}

@keyframes fade-in {
    from { opacity: 0 }
      to { opacity: 1 }
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}

/*---NAVIGATION BAR---*/

.navbar{
	/*border: 1px solid black;*/
	margin: -20px;
	background: rgb(103,149,149);
	background: linear-gradient(180deg, rgba(103,149,149,0.7) 0%, rgba(103,149,149,0) 100%);
}

.navbar ul {
	/*border: 1px solid black;*/
	margin: 0px;
	padding: 20px 0px 100px; /* Extent bottom margin to increase hover area*/
	display: flex;
	flex-direction: row;
	text-align: center;
	opacity: 0%;
	-webkit-transition: opacity 1s;
}

.navbar ul:hover{
	opacity: 100%;
	-webkit-transition: opacity 1s;
}

.navbar li {
    list-style: none;
    flex: 1;
}

.navbar a {
	text-transform: uppercase;
	/*font-family: "Alegreya";*/
	color: white;
	text-decoration: none;
	opacity: 60%;
	-webkit-transition: opacity 1s;
}

.navbar a:hover {
	opacity: 95%;
	-webkit-transition: opacity 1s;
}

/*---ARCHIVE---*/

.toc {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
}

.toc ul{
	padding: 0;
}

.toc li{
    list-style: none;
}

.toc a{
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-family: "Alegreya";
    opacity: 60%;
    -webkit-transition: opacity 1s;
}

.toc a:hover {
    opacity: 95%;
    -webkit-transition: opacity 1s;
}

/*---Story---*/

.story-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    max-height:400px;
    overflow: auto;
    opacity: 95%;
    font-family: "Alegreya";
}

.story_title{
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.story{
    text-align: center;
    line-height: 1.5;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.story-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE and Edge */
.story-container {
    -ms-overflow-style: none;
}

/*---------------------------------------------------------------------*/

/*---ABOUT I---*/

.description {
    text-align: center;
    position: absolute;
    font-family: "Alegreya",cursive;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width:500px;
    /*margin: auto;*/
}

.button {
    padding: 55px 32px;
    border: 0px solid white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: "Alegreya",cursive;
    color: white;
}

.button{
    opacity: 60%;
    -webkit-transition: opacity 1s;
}

.button:hover {
    opacity: 95%;
    -webkit-transition: opacity 1s;
}

/*---ABOUT II---*/

.center-container {
    padding: 55px 32px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    text-transform: uppercase;
    /*margin: auto;*/
}

.license a {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.license{
    opacity: 60%;
    -webkit-transition: opacity 1s;
}

.license:hover {
    opacity: 95%;
    -webkit-transition: opacity 1s;
}

/*---NAVIGATION DOTS---*/

.dot {
    height: 5px;
    width: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dot_active {
    height: 5px;
    width: 5px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

/*---PLACEHOLDER TEXT---*/

.temp {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    font-family: "Alegreya",cursive;
}
