* {
    box-sizing: border-box;
}

body {
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 1.1em;
    line-height: 1.4em;
    margin: 0px;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1000;
    overflow: hidden;
}

h1,
h2 {
    font-weight: normal;
    text-transform: uppercase;
}

h1 {
    font-size: 2.6em;
    line-height: 1em;
    margin-top: 0;
}

h2 {
    font-size: 1em;
}

.container {
    display: table;
    width: 100%;
    height: 100vh;
}

.column {
    padding: 2em;
    width: 100%;
}

#col1 {
    background-color: rgba(239, 98, 35, 0.9);
    transition: background-color 0.5s;
    vertical-align: top;
}

#col1:hover {
    background-color: rgba(239, 98, 35);
}

#col2,
#col3,
#col4 {
    background-color: rgba(0, 0, 0, 0.8);
    transition: background-color 0.5s;
}

#col2:hover,
#col3:hover,
#col4:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

#col2,
#col3 {
    border-right: none;
    border-bottom: 1px solid #222;
}

.column img {
    max-width: 200px;
    max-height: 50px;
}

.button {
    color: #FFF;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 1em 0;
    display: inline-block;
    width: auto;
    transition: background-color 0.5s;
}

.button:hover {
    background-color: #000!Important;
}

#col2 .button {
    background-color: #EF6223;
}

#col3 .button {
    background-color: #E4002B;
}

#col4 .button {
    background-color: #DF158B;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 1em;
    }
    #myVideo {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        z-index: -1000;
        overflow: hidden;
    }
    .column {
        width: 25%;
        display: table-cell;
        padding: 14% 3rem;
    }
    #col2, #col3 {
        border-right: 1px solid #222;
        border-bottom: none;
    }
}