*{
    margin:0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    font-family: Arial, sans-serif;
}

body{
    display: grid;
    grid-template-rows: 30px auto auto 30px;
    overflow: hidden;
    grid-row-gap: 20px;
}

a{
    color: #000;
    text-decoration: none;
}
a:hover{
    color: #E62043;
    text-decoration: underline;
}

.header{
    align-self: end;
    max-width: 400px;
    width: 100%;
    justify-self: center;
    margin-bottom: 35px;
    padding: 0 20px;
}
.content{
    max-width: 650px;
    margin: 0 auto;
    font-size: 17px;
    padding: 0 10px;
}

.lang ul{
    text-align: center;
    position: absolute;
    top: 15px;
    right: 20px;
}
.lang ul li{
    display: inline-block;
    height:24px;
    cursor: pointer;
}
.lang ul li img{
    height: 100%;
    width: auto;
}

table tbody tr th{
    width: 119px;
    vertical-align: top;
    line-height: 1.3;
}
table tbody tr td{
    vertical-align: top;
    padding-bottom: 20px;
    line-height: 1.3;
}
.footer{
    text-align: center;
    font-size: 12px;
}