/** Fonts */
@font-face {
    font-family: 'Frutiger World';
    src: url(../assets/fonts/NeueFrutigerWorld-Black.otf);
}
@font-face {
    font-family: 'Frutiger World';
    src: url(../assets/fonts/NeueFrutigerWorld-Bold.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: 172px;
        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: 225px;
        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;
}

ul
{
    line-height: 1.2;
}

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

.header
{
    font-family: 'Frutiger World Bold';
    text-align: left;
    font-size: 30px;
    font-weight: bolder;
    background: -webkit-linear-gradient(#E75F23, #BD3213);
    -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
{
    position: absolute;
    top: 2px;
    left: calc(50% - 147px);
}

#first_header
{
    margin-top: 0;
    padding-top: 0;
}

.logo-container {
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically (if needed) */
    margin-bottom: 0px; /* Reduce the bottom margin if it's too large */
    padding-bottom: 0px; /* Adjust padding if necessary */
}

#game_logo {
    margin-bottom: 4px; /* Add space below the game logo */
}

#sub_game_logo {
    /* Additional styling if needed */
}