body {
    padding: 50px;
    background-color: #0A0A0A;
	text-align: center;
    color: white;
    font-family: "Novecento Medium";
    font-size: 18px;
}

@font-face{
    font-family: "Novecento Medium";
    src: url("/Novecento Medium.ttf") format("truetype");
}

img{
    display:block;
    margin: auto;
    margin-top: 50px;
}

.shadow{
    box-shadow: 10px 10px 5px black
}

h1{
    color: #FF7823;
    margin-bottom: 0px;
}

h2{
    margin-top: 0px;
    font-size: 14px;
}

a{
    color: #64D7FF;
    text-decoration: none;
}

div{
    line-height: 1.4;
    padding-bottom: 20px;
}

#notification{
    text-align: center;
    display:block;
    margin:auto;
}

dialog{
    margin-top: 20px;
    width: 800px;
    color: black;
    background-color: #CDCDCD;
    border-radius: 20px;
}

p{
    margin-top: 4px;
}

#target p {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 100px;
    text-align:left
}

.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.continue{
    position: absolute;
    top: 85%;
    left: 48%;
}

/*SLIDESHOW*/

.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
    margin-top: 250px;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    left: 0%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    left: 95%;
    border-radius: 3px 0 0 3px;
}

/*MODAL IMAGES*/
#myImg1, #myImg2, #myImg3, #myImg4, #myImg5 {
    border-radius: 15px;
    cursor: pointer;
}

#myImg1:hover, #myImg2:hover, #myImg3:hover, #myImg4:hover, #myImg5.hover {
    opacity: 0.8;
}

.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: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close1, .close2, .close3, .close4, .close5 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

@media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
}

/*DIALOGUE*/

#mainbox {
	/*Size of Main Container*/
	width: 90vmin;
	height: 60vmin;
	
	/*Places container in the center of the screen*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	/*Sets selected background to cover the whole main container*/
	background-size: cover;
}

#textbox {
	
	/*Sets a background color*/
	background: rgba(0,0,0,0.7);
	
	/*Sets size and padding*/
	width: 90%;
	height: 20%;
	padding: 0.5rem;
	
	/*Makes text scrollable*/
	overflow: auto;
	word-break: break-word;
	
	/*Positioning in container*/
	margin: auto;
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, 0);
}

#spritebox{
	
	/*Sets size*/
	max-width: 70%;
	
	/*Positioning in container*/
	z-index: -1;
	position: absolute;
    bottom: -5%;
    left: 15%;
}

#spritebox img{
	
	/*Ensures that image doesn't exceed box size*/
	max-width:100%;
}

#namebox{
	
	/*Sets background color, padding, and border*/
	background: rgba(0,0,0,0.7);
    padding: 0.5rem;
	
	/*Positions it in the container*/
	position: absolute;
    bottom: 26.5%;
	left: 1.5%;
}

/*ANIMATIONS*/

.animate{
    opacity: 0;
    animation: fade-in 2s forwards;
}
  
@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/*SCROLLBAR BE GONE*/

.noscroll::-webkit-scrollbar {
    display: none;
}

.noscroll{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}