html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

a, a:link {
    color: #fff;
    filter: alpha(opacity=85);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    opacity: 0.85;
}

a:hover, a:focus, a:active {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 90%;
    width: auto\9;
    height: auto;
}

h1, h2 {
    display: none;
}

.page {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url('photo.jpg');
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3em;
    text-align: center;
}

.page:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: #333;
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    opacity: 0.4;
}

.inner {
    position: relative;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    z-index: 1;
}