/** VARIABLES */

:root {
  --mcolor: #1f182a;
  --mvariant: #b67db4;
  --mvariantlight: #de99db;
  --mlight: #82758c;
  --lightgrey: #b3b5b1;
  --backgradient: var(--mcolor) linear-gradient(12deg, #1f182a 34%, #34254b 55%, #0d0a15 82%);
  --text: white;
  --background: #15111c;
  --dark:#20211f;
  --darkest:black;
  --highlight:purple; /** Mainly to make tickets pop */
  --mfont : 'Pathway Gothic One', Arial, sans-serif;
  --tfont : 'Pathway Gothic One', Arial, sans-serif;
  --afont: 'Rock Salt', cursive;
}

/** GENERAL BODY **/

.page-title-middle h1 {
	position: absolute;
	top:7px;
	width:100%;
	text-align: center;
	color:var(--mvariant); 
	z-index:998;
	margin:auto;
	font-size:56px;
	text-shadow: 3px 3px 3px black;
	font-family : var(--tfont);
    margin-top:-34px;
}


.page-title h1 {
	color:white;
	text-align:center;
	font-size:90px;
}


@media screen and (max-height: 700px) {
	.page-title {
		top:5%;
	}
	
	.page-title h1 {
		font-size:60px;
	}
	
}


@media screen and (max-width: 735px) {
	.page-title h1 {
		font-size:48px;
	}
	
	.page-title-middle h1 {
		font-size: calc(1rem + 2vw);
		top:50%;
	}
}

.top-side, .top-side2 {
	height:36vh;
	overflow:hidden;
	width: 100vw;
	position:fixed;
	top:50px;
	background:var(--background);
	z-index:900;
}

.bottom-side, .bottom-side2 {
	position:absolute;
	margin-top:calc(36vh + 50px + 75px); /** height top-side + height middlebar **/
	background:var(--background);
	width:100%;
	min-height:40vh;
	padding-bottom: 100px;
	overflow-y: hidden;
	z-index:1;
}

.box {
	padding-top: 40px;
	width:50%;
	margin:auto;
}

.credits {
	float:left;	
	width:46%;
	border-right: solid var(--mvariant) 2px;
	padding-right:4%;
}

.info {
	float:right;
	width:46%;
}

@media screen and (max-width: 735px) {
	.box {
		width:65%;
	}
	
	.credits {
		width: 98%;
		border-right: none;
		border-bottom: solid var(--mvariant) 2px;
	}
	
	.info {
		width: 98%;
	}
}

.video {
	display:none;
}
	

/** HEADER: General */

.topbar {
	position:fixed;
	top:0;
	height:50px;
	background: var(--backgradient);
	border-bottom: solid 5px;
	border-image: linear-gradient(to left, var(--background), var(--highlight), var(--mcolor)) 1;
	z-index:999;
	width:100vw;
}

header {
	position:relative;
	z-index:999;
}

.topnav {
	display: table;
	margin: 0 auto;
	margin-top:10px;
}

.topnav a {
	position:relative;
    display:inline-block;
    text-align:center;
    padding: 10px 30px;
    color:var(--text);
    text-decoration:none;
	font-family: var(-mmfont);
}

@media screen and (max-width: 465px) {
	.topnav a {
		padding: 10px 10px;
	}
	
	.topnav {
		padding-right:20%;
	}
}

.topnav a.active {
    color:var(--mvariant);
}

.topnav a:hover {
    background-color: var(--mvariant);
	border-radius: 5px;
    color:black;
}

.middlebar {
	position:fixed;
    margin-top: calc(36vh + 50px); /** height top-side + height middlebar **/
	background-color: var(--darkest);
	height: 75px;
	font-size:18px;
	width:100%;
	opacity: 1;
	display:inline-block; 
	background: var(--backgradient);
	border-top: solid 4px;
	border-bottom: solid 4px;
	border-image: linear-gradient(to left, var(--background), var(--highlight), var(--mcolor)) 1;
    box-shadow: 0px -50px 100px rgba(128, 0, 128, 0.3);
    z-index:990;
}

@media screen and (max-width: 735px) {
	.middlebar {
		height:50px;
	}
	
	.bottom-side {
		margin-top:calc(36vh + 50px + 50px); /** height top-side + height middlebar **/
	}
}

/** Logo */


.logo-bottom {
    margin: auto;
	text-align:center;
	text-shadow: 1px 1px 2px black;
	width:230px;
}

.logo-index {
	position: absolute;
	top:80%;
	right:10%;
	z-index:999;
		text-shadow: 1px 1px 2px black;
}

.logop1 {
	font-size: 25px;
	font-weight:500px;
	font-family: var(--mfont);
	color:white; 
	letter-spacing: 2px;
	margin-bottom:50px;
	font-weight:bold;
}

.logop2 {
	font-family: var(--afont);
	font-size: 20px;
	color:var(--mvariant); 
	font-weight:bold
}




/** HEADER: Dropdown menu */

button {
	all: unset;
}


.dropdown { 
    position: relative; 
	display:inline-block;
} 

.dropdown-content {
    display: none;
	position:absolute;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
	width: 140px;
	margin:0px;
	padding:10px 26px;
}

.dropdown:hover .dropdown-content {
     display: grid;
	 background: var(--darkest);
}

/** GRID **/


.grid img {
	height:31vh;
	margin:auto;
	float:left;
}

.biggrid img{
	height:60vh;
	margin:auto;
	float:left;
}


/** FOOTER */

body::after {
  content: '';
  height:100%;
  display: block;
  height: 55px; /* Set same as footer's height, it's to make sure the content never disappears behind it at the end of the page */
}

footer {
	position:fixed;
	bottom:0;
    width:100%;
	opacity: 0.95;
	height:55px;
	background: var(--backgradient);
	border-image: linear-gradient(to right, var(--background), var(--highlight), var(--mcolor), var(--background)) 1;
	z-index:999;
    border-top: 5px solid var(--background);
}

.bottomnav {
	margin-left:10%;
	margin-right:10%;
	position:relative;
}

.bottomnav > p {
	text-align: center;
	margin-top:5px;
	margin-bottom:0px;
}

#website-credit {
	position: absolute; 
	width: 100%;
	text-align:center;
	bottom: -5px; 
	font-size:9px; 
	color:#404040; 
	letter-spacing:0.5px;
}

.bottom-deco {
	position:fixed; 
	bottom:60px; 
	left:-5px; 
	width:30vw;
	min-width:150px;
	pointer-events: none;
}

/** CENTER */

.pictures {
	display:block;
}

.heading-year {
	font-size:20px;
}

.top-picture-credit {
	font-size: 11px;
	letter-spacing: 0.5px;
	text-shadow: none;
    color: var(--mvariantlight);
	text-align:right;
	padding-top:0px;
	margin-top:0px;
	position:absolute; 
	bottom:0px; 
	right:30px;
    text-shadow: 1px 1px 1px black,1px 1px 2px black,1px 1px 3px black, 1px 1px 4px black, 1px 1px 5px black, 1px 1px 5px black, 1px 1px 6px black,  1px 1px 7px black;
}

.carousel-credit {
	position: absolute;
	right:40px;
	margin-top:-30px;
	font-size: 11px;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px 1px black,1px 1px 2px black,1px 1px 3px black, 1px 1px 4px black, 1px 1px 5px black, 1px 1px 5px black, 1px 1px 6px black,  1px 1px 7px black;
	color: var(--mvariantlight);
	text-align:right;
	z-index: 998;
}

.indexbox {
	position: fixed;
	width:100%;
	height:100%;
	display:block;
	background-position: 50% 40%;
	background-repeat:repeat-x;
	background-size:cover;
}

body {
	padding:0;
	margin:0;
	background: rgb(30,30,30);
	background: radial-gradient(circle, rgba(30,35,30,1) 0%, rgba(12,13,12,1) 100%);
		scrollbar-color: red purple;
}

.further {
    width:100%;
    display:inline-block;
}

.further li {
    text-align:center;
}

.further a {
    font-size:12px;
}


/** TEXT */
	
h1 {
	word-break:keep-all;
	color:var(--mvariant);
	font-size: min(max(20px, 3.5vh), 40px);
	font-family: var(--mfont);
	letter-spacing:6px;
	font-weight: bold;
	text-shadow: 1px 1px 5px black;
	margin:40px 0px 30px 0px;
}

.project h1 {
	text-align:center;
}

h2 {
	text-align: left;
	color:var(--mcolor);
	font-size:30px;
	font-family: var(--mfont);
	letter-spacing:2px;
	font-weight: normal;
	text-shadow: 1px 1px 5px black;
	margin:30px 0px 20px 0px;
}
h3 {
	text-align: left;
	color:var(--text);
	font-size:25px;
	font-family: var(--mfont);
	letter-spacing:2px;
	font-weight:bold;
	text-shadow: 1px 1px 5px black;
	margin:30px 0px 15px 0px;
}

p, li {
	text-align: justify;
	color:var(--text);
	font-family: var(--mfont);
	font-size:18px;
	letter-spacing: 2px;
	line-height: 1.5;
}

li::marker {
	content:"";
  color: var(--mvariantlight);
}

.box p{
	font-size:15px;

}

.box li  {
	font-size:15px;
	margin-bottom:10px;
}

.box  li b {
	font-size:18px;
	line-height:2;

}

.further li a {
    text-decoration:none;
    border: solid 2px var(--highlight);
    padding:4px 8px;
    border-radius: 5px 15px;
    font-family: var(--tfont);

}

.box li a {
	text-decoration:none;
	border: solid 2px var(--highlight);
	padding:4px 8px;
	border-radius: 5px 15px;
	font-family: var(--tfont);

}

.box li a:hover {
	color: var(--mvariantlight);
	border: solid 2px var(--mvariantlight);
}



a {
	text-align: center;
	color:var(--text);
	font-family: var(--mfont);
	text-decoration:none;
}

.quote p {
	margin-inline: 8% 10%;
}

.quote p {
	font-style:italic;
	font-size: 15px;
	letter-spacing: 0.5px;
	font-family: Calibri,Times New Roman,serif; 
	color: var(--lightgrey);
}


.box b {
	color:var(--mvariantlight);
}


.box a {
	text-decoration: underline;
	color:blue;
	color:var(--mvariantlight);
}

.secondary p {
	font-size:10px; 
	color:lightgrey; 
	margin:0px;
	letter-spacing: 2px;
	text-align:right;
}

.credits p {
	font-size:14px;
	margin-left:10px;
    text-align: left;
}

.info p {
	font-size:15px;
}

.credits u {
	color:var(--mvariantlight);
    text-decoration: underline solid 1px grey;
}

.emphasis {
    font-family: var(--afont);
}





	
