    html,
    body {
        height: 100%;
        background: #232323;
    }
    
    .hero-caption {
        display: table;
        height: 100%;
        width: 100%;
        text-align: center;
    }
    
    .hero-text {
        background: url("../img/moth_xray5.png") no-repeat;
        background-position: 48%;
        display: table-cell;
        vertical-align: middle;
        height: 100%;
    }
    
    .hero-font {
        font-family: 'Dosis', sans-serif;
        letter-spacing: 50px;
        font-size: 24px;
        opacity: 0.9;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
        margin-bottom: 50px !important;
        color: #f5f5f5;
    }
    
    .hero-font-sm {
        font-family: 'Dosis', sans-serif;
        letter-spacing: 20px;
        font-size: 16px;
        opacity: 0.9;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
        margin-bottom: 30px !important;
        color: #f5f5f5;
    }
    .hero-font-xs {
        font-family: 'Dosis', sans-serif;
        letter-spacing: 20px;
        font-size: 14px;
        opacity: 0.9;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
        margin-bottom: 30px !important;
        color: #f5f5f5;
    }

    .hero-font-xxs {
        font-family: 'Dosis', sans-serif;
        letter-spacing: 14px;
        font-size: 14px;
        opacity: 0.9;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
        margin-bottom: 30px !important;
        color: #f5f5f5;
    }
    
    .alt-font {
        font-family: "Dosis", sans-serif;
        text-transform: uppercase;
        letter-spacing: 10px;
        font-size: 14px;
        opacity: 0.6;
        color: #f5f5f5;
    }
    
    .alt-font-2 {
        font-family: 'Waiting for the Sunrise', cursive;
        letter-spacing: 6px;
        /*font-size: 14px;*/
        opacity: 0.6;
        color: #f5f5f5;
        text-align: center;
    }
    
    .alt-font-sm {
        font-family: "Dosis", sans-serif;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 12px;
        opacity: 0.6;
        color: #f5f5f5;
    }
    
    .fill {
        min-height: 100%;
        height: 100%;
    }
    
    .semi-transparent-button {
        display: block;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 8px;
        /*width: 80%;*/
        max-width: 380px;
        background: #fff;
        /* fallback color for old browsers */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #fff;
        text-align: center;
        text-decoration: none;
        /*letter-spacing: 10px;*/
        letter-spacing: 7px;
        transition: all 0.3s ease-out;
    }
    
    .semi-transparent-button:hover,
    .semi-transparent-button:focus,
    .semi-transparent-button:active {
        background: #fff;
        color: #000;
        text-decoration: none;
        transition: all 0.5s ease-in;
    }
    
    pre {
        background-color: inherit;
        border: none;
        font-family: 'Waiting for the Sunrise', cursive;
        /*letter-spacing: 10px;*/
        font-size: 16px;
        opacity: 0.6;
        color: #f5f5f5;
        text-align: center;
    }

    .img-ht {
        height: 400px;
    }
    
    .img-ht-md {
        height: 350px;
    }
    
    .img-ht-sm {
        height: 350px;
    }

    .pt-20 {
        padding-top: 20px;
    }

    .pb-20 {
        padding-bottom: 20px;
    }

    .pt-50 {
        padding-top: 50px;
    }

    .pb-50 {
        padding-bottom: 50px;
    }
    
    body {
        animation: fadein 2s;
        -moz-animation: fadein 2s;
        /* Firefox */
        -webkit-animation: fadein 2s;
        /* Safari and Chrome */
        -o-animation: fadein 2s;
        /* Opera */
    }
    
    @keyframes fadein {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @-moz-keyframes fadein {
        /* Firefox */
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @-webkit-keyframes fadein {
        /* Safari and Chrome */
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @-o-keyframes fadein {
        /* Opera */
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
