body
{
	background-color: black;
	color: white;

	margin: 0;
	
	font-size: x-large; 
}

#inputList
{
	margin: 0%;
	background-color: transparent;
	list-style-type: none;
	position: fixed;
	bottom: 3%;
	width: 97%;
	left: 0%;
}

.inputButton
{	
	float: left;
	outline: none;

	background-color: transparent;
	color: white;

	padding-top: 0%;
	padding-bottom: 0%;

	margin: 0.5%;
	padding-left: 1.5%;
	padding-right: 1.5%;
	font-size: x-large;
	font-family: 'Jost', sans-serif;
	font-size: x-large;

	border-radius: 2em;
	border: none;

	transition: all 0.25s;
}

.inputButton:hover
{
	box-shadow: 0px 0px 20px white;
}

#outputDiv
{
	background-color: transparent;
	position: fixed;
	overflow-y: scroll;

	font-family: 'Jost', sans-serif;
	font-size: x-large;

	padding: 2%;
	width: 100%;
	height: 70%;
}

#dayTitle
{
	width: auto;
	padding: 0%;
	margin: 0%;
	position: fixed;
	display: inline;
	background-color: transparent;
	right: 4%;
	top: 4%;

	animation-name: bounceLeft;
	animation-fill-mode: both;
	animation-duration: 0.5s;
}

h2
{
	margin: 0%;
	animation-name: bounceDown;
	animation-fill-mode: both;
	animation-duration: 0.5s;
}

#siSession, #officeHour
{	
	text-align: center;
	display: block;
	margin: 0%;
	width: 44%;
	font-size: xx-large;
	padding: 1%;
	margin: 2%;
	position: fixed;
}

.eventsDiv
{
	padding: 2%;
	border-radius: 1em;

	width: 84%;

	background-color: transparent;
	margin: 2%;
	margin-bottom: 0%;
}

.siSession, .siOfficeHour
{
	border-radius: 1em;
	border: 0.1em solid white;
	display: inline-block;
	padding: 2%;
	margin: 2%;
	margin-bottom: 0%;
	text-align: left;

	transition: all 0.25s;

	animation-name: bounceUp;
	animation-fill-mode: both;
	animation-duration: 0.5s;
}

.siSession:hover, .siOfficeHour:hover
{
	background-color: white;
	color: black;
	cursor: none;
	border: 13px solid white; 
}

a
{
	text-decoration: none;
	color: inherit;
	background-color: transparent;
	
	white-space: nowrap;
}

@keyframes bounceUp
{
	0%
	{
		transform: translateY(100px);
		opacity: 0;
	}
}

@keyframes bounceDown
{
	0%
	{
		transform: translateY(-100px);
		opacity: 0;
	}
}

@keyframes bounceLeft
{
	0%
	{
		transform: translateX(100px);
		opacity: 0;
	}
}

@keyframes bounceRight
{
	0%
	{
		transform: translateX(-100px);
		opacity: 0;
	}
}

#inputList
{
	animation-name: bounceRight;
	animation-fill-mode: both;
	animation-duration: 0.5s;
}

#pageMark
{
	position: fixed;
	bottom: 3%;
	padding: 0%;
	display: inline;
	border-radius: 1em;
	right: 4%;
	font-family: 'Jost',sans-serif;
	font-size: x-large;
	background-color: transparent;
	text-align: right;
}

span
{
	display: block;
}

.mobileOnlySpan
{
	display: none;
}

@media only screen and (max-width: 1000px) 
{
	#dayTitle
	{
		text-align: center;
		font-size: 300%;
		background-color: black;
		border-radius: 1em;
		bottom: 20%;
		top: auto;
		left: 8%;
		right: auto;
		width: 84%;
	}

	.siSession, .siOfficeHour
	{	
		margin-top: 10%;
		margin-bottom: 10%;
		font-size: 250%;
		padding: 4%;
	}

	#pageMark
	{
		width: 100%;
		right: 0%;
		top: 2%;
		bottom: auto;
		text-align: center;
		font-size: 70%;
	}

	h2 
	{
		font-size: 250%;
	}

	span
	{
		display: inline;
	}

	.inputButton
	{
		font-size: 250%;
	}

	#inputList
	{
		width: 95%;
		display: inline-table;
		left: 0%;
		overflow-x: scroll;
	}

	.inputButton
	{
		display: inline-block;
		margin-top: 1%;
		margin-bottom: 1%;
		padding: 4%;
		padding-top: 1%;
		padding-bottom: 1%;
	}

	#outputDiv
	{
		top: 7%;
		height: 60%;
		padding-bottom: 20%;
	}

	.mobileOnlySpan
	{
		display: inline;
	}
}
