:root {
  --color-background: #000000;
  --color-main-red: #ff0505;
  --color-standard-text: #eddfdf;
  --button-hover-background: #981e1e;
}


/* Styles for the main container */
.event-listing-container {
    display: flex;
    flex-wrap: wrap; /* Allows events to wrap to the next line */
    gap: 20px; /* Space between events */
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--color-main-red);
}

/* Styles for each individual event */
.single-event {
    flex: 1 1 300px; /* Allows the event box to grow/shrink, with a base width of 300px */
    border: 3px solid var(--color-main-red);
    padding: 15px;
    background-color: var(--color-background);
    text-align: center;
}

.single-event p {
	font-weight: bold;
    color: var(--color-standard-text);
    font-size: 21px;
	/*font-size: 24px;*/ 
    text-align: center;
    font-family: Baloo2-Regular;
}

.event-title {
	/*max-width: 90%;*/
    width: 100%;
    height: auto;
    font-family: Baloo2-Regular;
    background-color: var(--color-background);
	text-align: center;
}

.event-title p {
	font-weight: bold;
    color: var(--color-standard-text);
    font-size: 34px;
	/*font-size: 24px;*/ 
    text-align: center;
    font-family: Baloo2-Regular;
}

.event-date {
	width: 100%;
    height: auto;
    font-family: Baloo2-Regular;
    background-color: var(--color-background);
	text-align: center;
}

.event-date p {
	font-weight: bold;
    color: var(--color-standard-text);
    font-size: 28px;
	/*font-size: 24px;*/ 
    text-align: center;
    font-family: Baloo2-Regular;
}

/* Styles for the flyer image */
.event-flyer {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.event-raw-text {
	width: 100%;
    height: auto;
    font-family: Baloo2-Regular;
    background-color: var(--color-background);
	text-align: center;
}

.event-raw-text p {
	font-weight: normal;
    color: var(--color-standard-text);
    font-size: 20px;
	/*font-size: 24px;*/ 
    text-align: center;
    font-family: Baloo2-Regular;
}

/* Styles for the date */
.no-match {
    font-weight: bold;
    color: var(--color-standard-text);
    font-size: 21px;
	/*font-size: 24px;*/ 
    text-align: center;
    font-family: Baloo2-Regular;
    /*color: var(--color-standard-text);*/ /*#eddfdf;*/
}

.no-match p {
	font-weight: bold;
    color: var(--color-standard-text);
    font-size: 21px;
	/*font-size: 24px;*/ 
    text-align: center;
    font-family: Baloo2-Regular;
}
