.example1-container {
    background-color: #FFF0CC;
    height: 100%;
    padding-top: 60px;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
}

.showcase {
    margin: auto;
}

@media (min-width: 992px) {
    .showcase {
        display: flex;
        flex-direction: row;
    }
    .left-section {
        width: 55%;
        padding: 1%;
    }
    .right-section {
        width: 55%;
        padding: 1%;
    }
}

@media (max-width: 992px) {
    .showcase {
        display: flex;
        flex-direction: column;
    }
    .left-section {
        width: 90%;
        padding: 2%;

        order: 2;
    }
    .right-section {
        width: 90%;
        padding: 2%;
        padding-top: 5%;

        order: 1;
    }
}

.showcase-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: auto;

    text-align: center;
}

.text-large {
    font-family: 'Encode Sans Condensed';
    font-weight: bold;

    color: #DA2F47;
    
    font-size: min(3em, 4.5vw);
    margin-bottom: 1%;
}

.text-small {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    
    color: black;
    font-size: min(2em, 3vw);
    overflow-wrap: break-word;
    text-overflow: ellipsis;
}

.half-image {
    display: block;
    width: 90%;
    max-height: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5%;
}
.bottom-image {
    display: block;
    width: 90%;
    max-height: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}