
body {
    margin: 0;
    background: url('bg.png');
    font-family: 'Montserrat';
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

#navbar {
    background: url('bg_top.png');
    width: 100%;
    height: 30px;
    display: table;
    transition: all 0.5s ease;
    line-height: 30px;
    color: #FFFFFF;
}

#navbar a {
    padding-right: 5px;
    cursor: pointer;
}

#tabs, #additional {
    display: table-cell;
}

#tabs {
    padding-left: 10px;
}

#additional {
    text-align: right;
    padding-right: 10px;
}

#additional a {
    padding: 0;
}

#header {
    width: 100%;
    background: #6d6d6d;
}

#header h2 {
    margin: 8px;
}

#page {
    max-width: 900px;
    width: 100%;
    padding: 10px;
    border: solid 1px #000000;
    background: #ffffff;
    margin: 30px auto;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 0;
}

.activeTab {
    color: #6771e6 !important;
}