@charset "utf-8";
/* CSS Document */

* {
	color: white;
	font-family: Monospace, mono;
}

rainbow {
  	-webkit-animation: rainbow 3.5s infinite;
}
rainbow.slow {
  	-webkit-animation: rainbow 10s infinite;
}
@keyframes rainbow {
 	0%{color: #eb1f4c;}
 	14%{color: #eb714b;}
 	14%{color: #eb714b;}
 	29%{color: #fbc867;}
 	43%{color: #a9d93d;}
 	57%{color: #2f90ff;}
 	72%{color: #c240ff;}
 	86%{color: #f727d4;}
 	100%{color: #eb1f4c;}
}

img.no-right-click {
	pointer-events: none;
}

a {
	position: relative;
	text-decoration: none;
	color: #fff;
	color: rgba(255, 255, 255, 1);
	transition: 0.25s;
}
a:hover {
	color: rgba(255, 255, 255, 0);
	transition: 0.25s;
}
a rainbow {
  	position: absolute;
	top: 0%;
	left: 0%;
	margin: 0px;
  	text-align: center;
	z-index: -1;
}

.sans-serif {
	font-family: Arial, Helvetica, sans-serif;
}

.bold {
	font-weight: bold;
}

body {
	background-color: black;
  	min-height: 100vh;
  	margin: 0;
}

div.wrapper {
	width: 100%;
	min-height: 100vh;
  	max-width: 1024px;
	margin: 0;
  	margin-right: auto;
  	margin-left: auto;
	text-align: center;
	
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}
footer {
	margin: 20px;	
}

div.border {
	border: 3px solid white;
	border-radius: 15px;
}

#midixfest-logo {
	 width: 1000px;
}
#navbar {
	margin-top: -50px;
	margin-bottom: 100px;	
}
#navbar ul {
  	list-style-type: none;
  	margin: 0;
  	padding: 0;
}
#navbar ul li {
  	display: inline;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 32px;
}
#navbar ul li a {
  	position: relative;
  	text-align: center;
	border-radius: 15px;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
  	z-index: 1;
}
#navbar ul li a:hover {
	border: 3px solid white;
}
#navbar ul li a rainbow {
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

#next-event {
	margin-top: -20px;
	margin-bottom: -15px;
}
#next-event #next-event-text {
	font-size: 24px;
	background-color: black;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding-left: 30px;
	padding-right: 30px;
}
#next-event #event-date {
	font-size: 72px;
	padding-bottom: 10px;
}
#next-event #date-disclaimer {
	background-color: black;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding-left: 30px;
	padding-right: 30px;
}

.section-header {
	position: relative;
	margin-bottom: 0px;
}
.section-header h1 {
	font-size: 48px;
	background-color: black;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding-left: 30px;
	padding-right: 30px;
	margin-bottom: 0px;
}
.section-header hr {
  	position: absolute;
	top: 1em;
	left: 0em;
	width: 100%;
	z-index: -1;
	
  	display: block;
  	margin-top: 0.5em;
  	margin-left: auto;
  	margin-right: auto;
  	border-style: solid;
  	border-width: 2px;
	border-radius: 15px;
	margin-bottom: 0px;
}

.add-margin {
	margin-top: 100px;	
}

#discord-plug {
	margin-top: 100px;	
}
#discord-plug-paragraph {
	font-size: 24px;	
}
#sitting-ducks {
	font-size: 2em;
}

#midixfest-discord {
	height: 60px;	
}
#midixfest-discord-icon {
	width: 80px;
	height: 80px;
}
div.link-arrow {
	margin-bottom: 10px;
	font-size: 72px;
	transition: 0.5s;
}
a:hover div.link-arrow {
	margin-left: 10px;
}

#social-list {
  	display: flex;
 	justify-content: center;
  	align-items: center;
	margin-bottom: -10px;
}

#copyright {
	margin-top: 0px;
	font-size: 18px;
}

/* Collapsible Dividers */
div.collapsed-question {	
	border-bottom: 2px solid white;
}
div.collapsed-question:last-of-type {	
	border-bottom: 0px;
}

div.collapsed-question button.collapsible {
	transition: 0.2s;
  	background-color: #000;
  	color: white;
  	cursor: pointer;
  	padding: 18px;
  	width: 100%;
  	border: none;
  	text-align: left;
  	outline: none;
  	font-size: 24px;
}

div.collapsed-question .active, div.collapsed-question button.collapsible:hover {
  	background-color: #111;
}

div.collapsed-question button.collapsible:after {
  	content: "🡲";
  	color: white;
  	font-weight: bold;
  	float: right;
  	margin-left: 5px;
	transition: 0.1s;
}

div.collapsed-question .active:after {
	transition: 0.1s;
	-webkit-transform: rotate(-90deg);
}

div.collapsed-question .content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	text-align: left;
	background-color: #000;
}

div.collapsed-question .content p {
	font-size: 18px;
}

/* MOBILE FRIENDLY DESIGN */
@media screen and (max-width: 900px) {
	body {
		min-height: 0;
	}
	
	div.wrapper {
		max-width: 98%;
		min-height: 92vh;
	}
	#midixfest-logo {
		max-width: 100%;	
	}
	#navbar {
		margin-top: -20px;
		margin-bottom: 50px;	
	}
	#navbar ul li {
		padding-left: 0px;
		padding-right: 0px;
		font-size: 20px;
	}
	#navbar ul li a {
		padding-left: 5px;
		padding-right: 5px;
	}
	#navbar ul li a rainbow {
		padding-left: 5px;
		padding-right: 5px;
	}
	
	#next-event #next-event-text {
		font-size: 16px;
	}
	#next-event #event-date {
		font-size: 36px;
	}
	#next-event #date-disclaimer {
		font-size: 10px;
	}

	.section-header h1 {
		font-size: 28px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.section-header hr {
		display: none;
	}

	.add-margin {
		margin-top: 50px;	
	}

	#midixfest-discord {
		height: 40px;	
	}
	#midixfest-discord-icon {
		width: 55px;
		height: 55px;
	}
	div.link-arrow {
		margin-bottom: 16px;
		font-size: 36px;
	}
	
	#discord-plug {
		margin-top: 50px;	
	}
	#discord-plug-paragraph {
		font-size: 14px;	
	}
	#sitting-ducks {
		font-size: 24px;
	}
	
	footer {
		margin: 2px;	
	}
	#copyright {
		font-size: 14px;
	}
	
	/* Collapsible Dividers */
	div.collapsed-question button.collapsible {
		font-size: 16px;
	}

	div.collapsed-question button.collapsible:after {
		content: "→";
		margin-top: -5px;
	}
	div.collapsed-question .active:after {
		margin-top: 5px;
		margin-left: -5px;
	}

	div.collapsed-question .content p {
		font-size: 14px;
	}
}