/** 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;
        margin-top: 0;
        left: 0;
        right: 0;
        width: 86%;
        min-height: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 200px;
        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: 200px;
        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: 98% auto;
    background-repeat: repeat-y;
    background-position: top left;
    background-attachment: fixed;
}

body
{
    background-image: url(bg_portrait.jpg);
    color: white; /** Determines main font color */
}

ul
{
    line-height: 1.2;
}

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

.header
{
    font-family: Frutiger, Helvetica, sans-serif;
    text-align: left;
    font-size: 30px;
    font-weight: bolder;
    background: -webkit-linear-gradient(#E5A424, #FFD768); /** Defines gradient for headers */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/** Text alignment classes */
.centered
{
    text-align: center;
}

.leftAligned
{
    text-align: left;
}

table
{
    border: 2px solid white;
}

th 
{
    background-color: darkblue;
    font-weight: bold;
    color: white;
    text-align: center;
}

td
{
    background-color: lightblue;
    font-weight: normal;
    color: black;
    text-align: center;
}

/** List style classes */
.noBullet
{
    list-style-type: none;
    list-style-position: inside;
}

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

.listSpacer
{
    padding-bottom: 10px;
    padding-top: 10px;
}

.bottomSpacer
{
    padding-bottom: 10px;
}

/** Game logo positioning */
#game_logo
{
    position: absolute;
    top: 2px;
    left: calc(50% - 110px);
}