/** Fonts */
@font-face {
    font-family: "NotoSansRegular";
    src:
        local("Noto Sans"),
        url(NotoSans-Regular.ttf);
}

@font-face {
    font-family: "NotoSansBold";
    src:
        local("Noto Sans Bold"),
        url(NotoSans-ExtraBold.ttf);
    font-weight: bold;
}

/*
    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: 50px;
        margin-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 2;
    }
}

@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: 50px;
        margin-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 2;
    }
}

/* 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-color: black;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top left;
    background-attachment: fixed;
    background-image: none;
}

body {
    /* background-image: url(ext_help_page.png); */
    color: white;
    font-family: "NotoSansRegular", Helvetica, sans-serif;
}

ul {
    line-height: 1.2;
}

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

table,
th,
td {
    border: 2px solid white;
    text-align: center;
}

br {
    height: 20px;
    width: 100%;
}

.quickhit_table {
    width: 90%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer_table {
    width: 90%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    font-family: "NotoSansBold", 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_logo {
    padding: 0;
    position: relative;
    left: calc(50% - 310px);
    margin-top: 25px;
    vertical-align: middle;
}

#custom_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 97.75%;
    height: 200%;
    z-index: 0;
}