.banner {
    width: 100%;
    height: 350px;
    background-color: lightgray;
}

body {
    margin: 0;
}

.event {
    width: 100%;
    margin: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24pt;
    color: white;
    background-color: black;
    padding: 15px 0 15px 0;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 36pt;
    padding: 5px 0 5px 0;
    color: white;
    background-color: black;
    margin: auto auto auto auto;
}

.timeDate {
    display: grid;
    grid-template-columns: '25% 50% 25%';
    grid-template-rows: 'main main';
    height: 150px;
}
.timeDate > div {
    display: inline-grid;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: white;
    width: 25%;
    height: 50px;
    text-align: center;
    padding: 35px 0 0 0;
    margin-top: 2px;
}
.timeDate > div:first-child {
    background-color: rgba(0,255,0,0.5);
    color: green;
}
.timeDate > div:last-child {
    background-color: rgba(150,150,150,0.75);
}
.timeDateDesc {
    font-family: 'Montserrat', sans-serif;
    width: 50%;
    height: 125px;
    text-align: center;
    margin: -150px 0 0 25%;
    padding-top: 50px;
}
.timeDateLink {
    background-color: rgba(0,255,0,0.5);
    color: green;
    font-family: 'Montserrat', sans-serif;
    width: 25%;
    text-align: center;
    height: 125px;
    margin: -175px 0 0 75%;
    padding-top: 50px;
}
.timeDateLink:hover {
    transition: 0.5s;
    background-color: green;
    color: rgba(0,255,0,0.5);
}