.event-container {
    margin-bottom: 50px;
}

.events-title-container {
    font-size: 2em;
    display: flex;
    justify-content: center;
    color: #005A6D
}

.flex-center {
    display: flex;
    justify-content: center;
}

.event-info-container {
    width: 1000px;
    display: grid;
    grid-template-columns: 60% 40%;
    background-color: #005A6D;
}

.event-title-bar {
    grid-column: 1 / 3;
    padding: 0.5em;
    background-color: #5EA5AB;
    color: white;
    font-size: 1.5em;
    font-family: 'open sans', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.event-image-container {
    width: 100%;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-description-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    margin: 20px;
}

.event-description {
    font-size: 1.25em;
    text-align:justify;
}

.event-button-container {
    margin-top: 20px;
}

.event-date-text {
    font-weight: bold;
    margin-top: 50px;
}

.discount-text {
    font-weight: bold;
    font-size: 1.10em;
    margin-top: 10px;
    /*text-align: justify;*/
}

.discount-disclaimer {
    margin-top: 5px;
    font-size: 0.9em;
}

@media only screen
and (max-width : 1200px) {

    .event-container {
        margin-left: 15px;
        margin-right: 15px;
    }

    .event-image-container {
        grid-column: 1 / 3;
        width: 100%;
    }

    .event-description-container {
        grid-column: 1 / 3;
    }
}