/* general settings */

html {
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(#570000, #000000);
    background-repeat: no-repeat;
}

div.container {
    background-image: url("../images/homepage.png");
    background-repeat: no-repeat;
    height: 700px;
    width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);

}

section.content {
    color: #ffffff;
    text-shadow: 0px 0px 5px #000000;
    font-family: 'PT Mono', consolas, serif;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

div.black {
    background: rgba(0, 0, 0, 0.6);
    padding: 2em;
}

h1 {
    font-size: 4em;
    font-weight: 100;
    text-shadow: 0px 0px 5px #000000;
    text-align: center;
    margin: 0 0 1em 0;
}

p {
    font-size: 1.1em;
    font-weight: 100;
    margin: 0 auto 2em auto;
    text-align: left;
    width: 750px;
}

.italics {
    font-style: italic;
}

/* over written media sizes */

/* smaller screens */
@media
only screen and (max-width : 1000px),
only screen and (max-height : 700px)
{
    html {
        overflow: auto;
    }

    div.container {
        height: 100%;
        width: 100%;
        transform: translate(-50%, -50%);
        background-size: 100%;
    }

}
/*

complete mobile versions

@media
only screen and (max-width : 920px)
{
    html {
        overflow: auto;
    }

    div.container {
        height: 100%;
        width: 100%;
        transform: translate(-50%, -50%);
        background-size: 100%;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 0.8em;
        width: auto;
    }


}
*/
