html,
body {
    height: 100%;
}

body {
    margin: 0;

    font-size: 14px;
    font-weight: 300;
    font-family: "Open Sans", arial, sans-serif;
    line-height: 1.465;
    text-align: center;

    background-image: url(background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
    color: #fff;
}

body:after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;

    background: rgba(0,0,0,0);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

h1 {
    position: absolute;
    z-index: 1;
    top: 20%;
    left: 0;

    box-sizing: border-box;
    width: 100%;
    padding: 30px;
}

img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

div {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 0;
    width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    display: block;
    margin: 10px 0;
}

a {
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    li {
        display: inline-block;
        margin: 10px 15px;
        text-align: left;
    }
}

@media only screen and (min-width: 768px) {
    body {
        background-image: url(backgroundx2.jpg);
    }

    h1 {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    div {
        bottom: 45px;
    }

    li {
        display: inline-block;
        margin: 10px 40px;
        text-align: left;
    }
}

@media only screen and (min-width: 1280px) {
    body {
        background-image: url(backgroundx4.jpg);
    }

    img {
        max-width: 600px;
    }
}
