html, body {
    background: #282e34;
    font-size: 1.2rem;
}

h1 {
    text-align: center;
}

#events_description p {
    font-size: 1rem;
    margin: 0 5%;
}

.event_card {
    background: #343c43;
    margin: 5%;
    padding: 5%;
    text-align: center;
}

.event_card h2 {
    margin: 0;
}

.event_card p {
    font-size: 1rem;
    text-align: left;
    margin: 5%;
}

.event_card a {
    background-color: #2f4c76;
    color: white;
    display: inline-block;
    margin: auto;
    padding: .5em 1em;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.event_card a:hover {
    background-color: #4CAF50; /* Green */
    color: white;
}