﻿  body, html {
    margin: 0px;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
}

.logo {
    color: #cc181e;
}

    .logo span {
        color: #000;
    }

.overlay {
    height: 100%;
    background-color: rgba(234, 234, 234, 0.95);
}

.bgimg {
    /* Background image */
    background-image: url('/images/bg.jpg');
    /* Full-screen */
    height: 100%;
    /* Center the background image */
    background-position: center;
    /* Scale and zoom in the image */
    background-size: cover;
    /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
    position: relative;
    /* Add a font */
    font-family: "Courier New", Courier, monospace;
    /* Set the font-size to 25 pixels */
    font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
    position: absolute;
    top: 0;
    left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
    position: absolute;
    bottom: 0;
    left: 16px;
}

/* Position text in the middle */
.middle {
    position: absolute;
    top: 340px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo-cover {
    padding-top: 50px;
    text-align: center;
}

/* Style the <hr> element */
hr {
    margin: auto;
    width: 40%;
    border-color: #000;
}

a {
    color: #cc181e;
    text-decoration: none;
}

    a:hover, a:active, a:visited {
        color: #cc181e;
        text-decoration: none;
        border-bottom: 1px dashed #cc181e;
    }
     