@charset "utf-8";

.event{
	display: flex;
	flex-direction: column;
	border: solid 1px #E1F25C;
	border-radius: 5px;
	box-shadow: 5px 5px #E1F25C;
	background-color:#F1F2D8;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 5px;
}

.event > h1{
	text-align: left;
	border: solid 1px #ff0000;
	border-radius: 5px;
	background-color:#E1F25C;
	box-shadow: 3px 3px #ff0000;
	padding: 10px;
	max-width: 400px;
}

.event > table{
	width: 50%;
}

.eventinfo{
	display: flex;
	background-color: #E1F25C;
	border: solid 1px #ff0000;
	border-radius: 5px;
	box-shadow: 3px 3px #ff0000;
	justify-content: space-around;
	padding: 10px;
}
.eventinfo > div{
	background-color: #F1F2D8;
	border: solid 1px #ff0000;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 10px;
	width: 125px;
}

div > .new{
	border: solid 5px #ff0000;
	box-shadow: 2px 2px rgba(0,0,0,0.3);
}

.eventinfo > div > h2{
	font-size: 1.5em;
	margin: 0;
	text-align: left;
	text-shadow: 1px 1px #ff0000;
}

.event > h2{
	text-align: left;
	padding-bottom:0;
	margin-bottom:0;
}

table{
	border: solid;
	padding: 5px;
	margin-left: auto;
	margin-right: auto;
}
th, td{
	text-align: left;
	border-bottom: 1px solid;
}

