﻿body {
	padding-top: 10px;
	background-color: #8ac7db;
	font-size: 14pt;
}

#main {
	background-color:  #e6f9ff;
}

#title {
	top: 0px;
	text-align: center;
	float: left;
	margin-left: 9%;
	padding-left: 3%;
	padding-right: 2%;
	padding-bottom: 20px;
	width: 50%;
	min-width: 300px;
	background-color: #8ac7db;
	background: linear-gradient(180deg, #8ac7db,  #e6f9ff);
	border-left: 1px solid #6f2a41;
	border-right: 1px solid #6f2a41;
}

#logo {
	width: 50%; 
}

figcaption {
	text-align: right; 
	padding-right: 25%; 
	font-family: "titleFont", Helvetica;
}

#documentationPane {
	margin-left: 0%;
	padding-right: 0.41%;
	position: fixed;
	top: 91%;
	width: 8%;
	height: 9%;
	min-width: 100px;
	border: 1px solid #6f2a41;
	background-color: #e6f9ff;
	text-align: center;
}

#documentationPane a {
	float: left;
	width: 100%;
	color: black;
	font-weight: bold;
	text-decoration: none;
}

#documentationPane a:hover {
	background-color: #ecc6d9;
	border-left: 5px solid #52bde0;
}

#bgMusicPlayer {
	display: none;
}

#infoPane {
	display: none;
	position: fixed;
	margin-left: 65%;
	padding-right: 1%;
	padding-left: 1%;
	margin-top: 0px;
	top: 20%;
	width: 32%;
	height: auto;
	min-width: 150px;
	background-color: #e6f9ff;
	border: 1px solid #6f2a41;
}

#infoPane p {
	
}

#infoPane img {
	max-width:99%;
	max-height:99%;
}

#infoPane img:hover {
	opacity: 0.7;
}

.storyPassage {
	float: left;
	margin-left: 9%;
	padding-left: 3%;
	padding-right: 2%;
	width: 50%;
	min-width: 300px;
	border-left: 1px solid #6f2a41;
	border-right: 1px solid #6f2a41;
	background-color: #e6f9ff;
}


.button {
	background: none;
	border: none; 
	padding:0;
	font: inherit;
	cursor: pointer;
	font-weight: bold;
	color: #004d99;
}

.button:disabled {
    color: #52bde0;
} 

.inspect {
	color: #6f2a41;
}

.inspect:disabled {
	color: black;
}

#tutorial2, #tutorial3 {
	display: none;
}

#introduction {
	padding-top: 1%;
}

#passage2, #passage3, #passage4, #passage5 {
	display: none;
}


/* Modal CSS from w3schools */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 150%;
    max-width: auto;
}

.modal-content {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
