/*
Name: Rafael Bayer
TA: Derek Chiu
Assignment: CP4

this is the index.css page for cp4, it contains style information for
the page index.html
*/
body {
	text-align: center;
	width: 90%;
	margin: auto;
	background-image: url("backgroundImg.png");
	background-repeat: repeat;
	background-size: 25% 25%;
}

header {
	margin-top: 5px;
}

main {
	background-color: white;
	box-shadow: 4px 4px 2px 2px #888888;
	padding: 5px;
	margin-top: 15px;
	border: solid black 2px;
	border-radius: 10px;
}

#newEvent, #myEvents {
	display: flex;
	flex-direction: column;
}

#newEvent {
	justify-content: space-around;
}

#myEvents {
	justify-content: flex-start;
	border: solid black 1px;
	padding: 5px;
	margin: 10px;
}

article {

	border: solid black 2px;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 7px;
	padding: 5px;
	box-shadow: 2px 4px 2px 2px #888888;
	border-radius: 10px;
}

.urgent {
	color: red;
	border: dashed red 2px;
	font-weight: bold;
}

.collapse {
	width: 25%;
}

.collapse p {
	display: none;
}