html, body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 30px;
    background-image: url(./img/BG_pict.jpg);
    background-position: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 930px;
    background-color: rgba(2, 11, 64, 0.8);
    padding: 50px 50px 30px 50px;
    box-sizing: border-box;
    color: #ffffff;
}

.content a {
    color: #ffffff;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.content:after {
    display: table;
    content: '';
    clear: both;
}

.left {
    float: left;
    width: 60%;
}

.right {
    float: right;
}

.small {
    font-size: 10px;
    text-align: right;
}