@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

@font-face {
    font-family: 'Univers';
    src: url('files/univers-condensed-regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Univers';
    src: url('files/univers-condensed-bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'Planewalker';
    src: url('files/planewalker-regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Planewalker';
    src: url('files/planewalker-bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #FFFFFF;
    background-color: #2F302F;
    font-family: 'Univers', sans-serif;
    font-weight: 700;
    text-shadow: 1.5px 1.5px #000000;
}

a {
    color: #E3C440;
    text-decoration: none;
}

a:hover {
    color: #FFFFFF;
    text-decoration: underline;
    text-shadow: none;
}


h1 {
    font-family: 'Planewalker', serif;
    font-weight: 700;
    font-size: 3em;
    color: #FFFFFF;
}

h2 {
    font-size: 2em;
    color: #C3C1A6;
}

h3 {
    font-size: 1.5em;
    color: #C3C1A6;
}


p {
    font-size: 1.2em;
    line-height: 1.5;
}

ul {
    padding-left: 20px;
    list-style-type: none;
    font-size: 1.2em;
    line-height: 1.5;
}

table {
    font-size: 1.18em;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    margin-top: 0;
    width: 100%;
    background: #000000;
}

.logo {
    margin-left: 0;
    width: 150px;
    height: 75px;
    background-image: url("img-body/logo-white-eso.svg");
}



.tab-container {
    overflow-x: auto;
    font-size: 1em;
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table img {
    width: 100%;
    height: auto;
    background-size: cover;
}

th {
    padding: 5px;
    font-size: 1.2em;
    background-color: #8F865E;
    border: 2px solid #C3C1A6;
}

td {
    padding: 5px;
    border: 2px solid #C3C1A6;
}




.flex-container {
    display: flex;
    flex-direction: row;
    padding: 5px;
    background-color: #8F865E;
    border: 2px solid #C3C1A6;
}

.flex-cell20 {
    flex: 20%;
    padding: 10px;
    margin: 5px;
    font-size: 1.1em;
    background-color: #2B2921;
    color: #FFFFFF;
    border: 2px solid #C3C1A6;
}

.flex-cell25 {
    flex: 25%;
    padding: 10px;
    margin: 5px;
    font-size: 1.1em;
    background-color: #2B2921;
    color: #FFFFFF;
    border: 2px solid #C3C1A6;
}



@media only screen and (max-width: 1200px) {
    .flex-container {
        flex-direction: column;
    }
}




.footer {
    width: 100%;
    text-align: center;
    background-color: #39322E;
    padding: 10px;
}