html,
body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-appearance: none;
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-image: url(bg.jpg);
    background-position: 90% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    background-attachment: fixed;
    display: table;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

.center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

img {
    max-width: 300px;
    width: 75%;
    height: auto;
}

.contact {
    -webkit-transition: all .5s;
    transition: all .5s;
    display: inline-block;
    border: 2px solid #fff;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.contact:hover {
    background-color: #fff;
    color: #000;
}

h1,
p {
    padding: 25px 0;
}