#eventlist { 
    list-style: none;
    width: 100%;
    margin: 0;
    padding-inline-start: 0;
}

#eventlist li { 
    transition: all 0.3s;
    list-style: none;
    width: 100%;
    display: inline-block;
    margin: 0;
    float: left;
    background-color: #e4f3fe;
    margin-top: 20px;
    padding: 15px 25px 15px 25px;
    border-radius: 25px;
}

#eventlist li:hover { 
    background-color: #f1f1f1;
}

.eventtitle { 
    color: #2075b5 !important;
    font-size: 24px !important;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 10px;
}

.eventdate {
    color: #2075b5 !important;
    font-size: 24px !important;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #FFF;
    display: inline-block;
    padding: 10px 20px 0px 20px;
    margin-top: -15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    float: right;
}

.location {
    color: #000000 !important;
    font-size: 17px !important;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 10px;
    border-bottom: 1px dashed;
    border-color: #2075b5;
}

.description, .description p {
    color: #000;
}

description a {
    color: #2075b5;
}