/** Fonts */
@font-face {
    font-family: Frutiger;
    src: url(../assets/fonts/NeueFrutigerWorld-Black.otf);
}

/* 
    Allows for the background to cover the whole of the text area and be scrollable
    Portrait mode also takes up a percentage of the screen to stop the text area becoming too small
*/
@media screen and (orientation: portrait) {
    #wrapper {
        position: absolute;
        left: 0;
        right: 0;
        width: 86%;
        min-height: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        margin-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: rgba(0, 0, 0, 0.75);
    }
}

@media screen and (orientation: landscape) {
    #wrapper {
        position: absolute;
        left: 0;
        right: 0;
        width: 86%;
        min-height: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        margin-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: rgba(0, 0, 0, 0.75);
    }
}

/* Styles the background so that it doesn't scroll and takes up the whole screen */
html,
body {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    overflow: auto;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top left;
    background-attachment: fixed;
    padding-top: 50px;
}

body {
    background-image: url(external_helppage_border.png);
    color: white;
}

ul {
    line-height: 1.2;
}

li {
    font-size: 15px;
    padding-bottom: 8px;
    font-family: Frutiger, Helvetica, sans-serif;
    line-height: 1.33;
}

.contentTable {
    width: 92%;
    background-color: #0e3076;
    border-collapse: collapse;
    border-width: 2px;
    border-color: #ffd80e;
    border-style: solid;
    color: #ffffff;
    margin-top: 2px;
    margin-bottom: 10px;
}

.header {
    font-family: Frutiger, Helvetica, sans-serif;
    text-align: left;
    font-size: 30px;
    font-weight: bolder;
    background: -webkit-linear-gradient(#FFD80E 50%, #D86700 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Styles the main body of the text to be centred */
.centered {
    text-align: center;
}

.leftAligned {
    text-align: left;
}

.noBullet {
    list-style-type: none;
    list-style-position: inside;
}

.withBullet {
    list-style-type: disc;
    list-style-position: outside;
}

.listSpacer {
    padding-bottom: 20px;
}

#game_logos {
    height: 250px;
    width: 100%;
    top: 5px;
    text-align: center;
}

#game_logos img {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    vertical-align: middle;
    width: auto;
    height: 100%;
}