html {
    box-sizing: border-box;
    background-color: #e9e9e9;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

h2 {
    font-size: 1em;
}

p {
    font-size: .9em;
}

.button {
    text-decoration: none;
    width: max-content;
}

button, .button {
    background-color: #e48831;
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 18px;
    display:block;
    margin: 0 auto;
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px; 
    border-radius: 3px; 
    border: 1px solid #de8338;
    text-shadow: 1px 1px 1px #6d6d6d;
    cursor: pointer;
}

button:hover, .button:hover {
    background-color: #de700a;
    border: 1px solid #a25106;
}

a {
    color: #005a92;
}

.bold {
    font-weight: bold;
}

.faded {
    color: #b9b9b9;
}

.container {
    width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.col {
    width: 50%;
}

.col.content {
    border: 2px solid #2d6d76;
}

section {
    padding: 30px 30px;
    border-bottom: 2px solid #ebebeb;
    background-color: #FFFFFF;
}

section:last-child {
    border-bottom: 0;
}

section#hero {
    text-align: center;
    color: #FFFFFF;
    background: #6d9aa0; /* Old browsers */
    background: -moz-linear-gradient(top,  #6d9aa0 0%, #0d5969 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #6d9aa0 0%,#0d5969 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #6d9aa0 0%,#0d5969 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d9aa0', endColorstr='#0d5969',GradientType=0 ); /* IE6-9 */

}

section#hero h1 {
    font-size: 1.4em;
}

section#hero h1, section#hero p {
    margin-bottom: 28px;
}

img.alarm-clock {
    width: 100%;
}

#alarm-clock-mobile {
    display: none;
}

.contact, .copyright {
    font-weight: 300;
}


@media only screen and (max-width: 768px) {
    img#alarm-clock {
        display: none;
    }

    .container {
        width: 100%;
    }

    .col {
        width: 0%;
    }

    .col.content {
        width: 100%;
    }

    #alarm-clock-mobile {
        display: block;
        width: 100%;
    }
}