#EventsMainList 
{
    max-width: 800px;
}

#EventsMainList a
{
    width: 100%;
}

.EventView
{
    width: 100%;
    height: 280px;
    /*background-size: 110% 110%;*/
    background-size: cover;
    background-position: center center;
    transition: all .8s;
    /*margin: 0px 20px 100px 20px;*/
    margin: 50px 5px;
}

.EventView:hover { 
    -webkit-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
}

.EventView .row
{
    transition: all .8s;
}

.EventView:hover
{
    /*text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);*/
    filter: brightness(1.2);
}

@media only screen and (max-width: 800px) {
    .EventView
    {
        height: 400px;
        width: 100%; 
        margin: 10px 5px;
    }

    .EventView .title
    {
        font-size: 42px !important; 
        text-align: center;
    } 
}

.EventView .title
{
    color: white;
    font-family: YesevaOne;
    font-size: 60px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 50px;
    text-align: center;
}

.EventView .category
{
    color: white;
    padding-bottom: 20px;
    font-family: GalanoGrotesque;
}

.EventView .date
{
    border: 0px solid white;
    background: gray;
    color: white;
    border-radius: 10px;
    width: 55px;
    height: 65px;
    margin: 10px;
}