html,
body {
    /* Disabling text selection */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select:   none; /* Chrome/Safari/Opera */
    -khtml-user-select:    none; /* Konqueror */
    -moz-user-select:      none; /* Firefox */
    -ms-user-select:       none; /* IE/Edge */
    user-select:           none; /* non-prefixed version, currently not supported by any browser */
    cursor: default;
    height: 100%;
    background-color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
}

body,
a {
    color: #414141;
}

a {
    text-decoration: none;
}

a img {
    border: 0;
}

img {
    vertical-align: middle;
}

p {
    margin: 25px 50px;
}

.wrapper {
    max-width: 640px;
    margin: auto;
}

.content .view {
    position: relative;
    overflow: hidden;
    background-image: url(/img/bg.jpg);
}

.content .view.long {
    overflow: visible;
    height: auto !important;
    background-repeat: repeat-y;
    border-top: 0.5px solid white;
}

.content .view .main-content {
    position: absolute;
    max-width: 640px;
}

.content .view .bottom-graphics {
    position: absolute;
    left:   0;
    bottom: 0;
}

.content .view .arrow-down {
    cursor: pointer;
    position: absolute;
}

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    display: block;
    margin: auto;
    text-align: center;
}

.clear {
    clear: both;
}