@font-face {
    font-family: 'HelveticaNeue-CondensedBold';
    src: local('☺'), url('fonts/HelveticaNeue-CondensedBold.woff') format('woff'), url('fonts/HelveticaNeue-CondensedBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'HelveticaNeue-CondensedBold', "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;;
    font-size: 14px;
    line-height: 1.3;
    color: #333333;
    background-color: #F5F6F0;
    text-transform: uppercase;
}

.content {
    position: relative;
    padding: 20px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
}

*, *:before, *:after {
  box-sizing: border-box;
}
.content__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
}
.content__inner > div {
    width: 100%;
}

.visible-xs {
    display: none;
}

a {
    color: #333333;
    text-decoration: none;
}
a:hover {
    color: #000;
}

.links > span {
    margin: 0 10px;
    display: inline-block;
}

img {
    max-width: 100%;
}

.bottom_text {
    position: absolute;
    width: calc(100% - 40px);
    text-align: center;
    bottom: 40px;
}

@media (max-width: 800px) {
    .hidden-xs {
        display: none;
    }
    .visible-xs {
        display: inline-block;
    }
    .content {
        min-height: 600px;
    }
}
