html {
    width: 100%;
    height: 100%;
    min-width: 1400px;
}
body {
    width: 100%;
    height: 100%;
    background: #000;
}

footer {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.main-body {
    display: table;
    width: 100%;
    height: 100%;
}

.main-body > .content {
    border: 1px solid;
    display: table-row;
    width: 80%;
    height: 80%;
}

.main-body > .content > div {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

h1 {
    width: 500px;
    font-size: 56px;
    padding-bottom: 25px;
    border-bottom: 3px solid #FFF;
    margin-bottom: 25px;
}

p {
    font-size: 24px;
}

.button {
    border: none;
    background: #FFF;
    color: #000;
    cursor: text;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}

.main-body > .content > div.left {
    text-align: center;
}

.logo {
    width: auto;
}