﻿#arena_div
{
    width: 1524px;
    min-height: 500px;
    margin: 0 auto;

    font-size: 24pt;
    font-weight: bold;

 /* border: 1px solid gray; */
}

span.explanation
{
    font-size: 27pt;
    text-shadow: 0px 0px 4px yellow;
}

span.game_title
{
    font-size: 36pt;
    text-shadow: 0px 0px 20px yellow;
}

/* Responsive Styles ----------------------------------------------------------------------- */

@media only screen and (min-width:1024px) and (max-width:1523px)
{
    #arena_div
    {
        width: 1024px;
    }

    span.explanation
    {
        font-size: 24pt;
        text-shadow: 0px 0px 4px yellow;
    }

    span.game_title
    {
        font-size: 36pt;
        text-shadow: 0px 0px 20px yellow;
    }

    a.push_button
    {
        font-size: 32pt;
        width: 300px;
        height: 60px;
        padding: 8px 10px;
        box-shadow: 1px 1px 6px 6px rgba(20%,20%,40%,0.5) inset;
        border-radius: 15px;
    }
}

@media only screen and (min-width:768px) and (max-width:1023px)
{
    #arena_div
    {
        width: 768px;
        min-height: 480px;
        font-size: 22pt;
    }

    span.explanation
    {
        font-size: 22pt;
        text-shadow: 0px 0px 3px yellow;
    }

    span.game_title
    {
        font-size: 28pt;
        text-shadow: 0px 0px 20px yellow;
    }

    a.push_button
    {
        font-size: 28pt;
        width: 280px;
        height: 54px;
        padding: 6px 8px;
        box-shadow: 1px 1px 6px 6px rgba(20%,20%,40%,0.5) inset;
        border-radius: 12px;
    }
}

@media only screen and (min-width:512px) and (max-width:767px)
{
    body {  background: black;  }

    #arena_div
    {
        width: 512px;
        min-height: 320px;
        font-size: 18pt;
    }

    span.explanation
    {
        font-size: 18pt;
        text-shadow: 0px 0px 3px yellow;
    }

    span.game_title
    {
        font-size: 24pt;
        text-shadow: 0px 0px 20px yellow;
    }

    a.push_button
    {
        font-size: 24pt;
        width: 220px;
        height: 48px;
        padding: 6px 8px;
        box-shadow: 1px 1px 6px 6px rgba(20%,20%,40%,0.5) inset;
        border-radius: 10px;
    }
}

@media only screen and (max-width:511px)
{
    body {  background: black;  }

    #arena_div
    {
        width: 320px;
        min-height: 240px;
        font-size: 13pt;
    }

    span.explanation
    {
        font-size: 13pt;
        text-shadow: 0px 0px 3px yellow;
    }

    span.game_title
    {
        font-size: 18pt;
        text-shadow: 0px 0px 20px yellow;
    }

    a.push_button
    {
        font-size: 18pt;
        width: 160px;
        height: 32px;
        padding: 6px 8px;
        box-shadow: 1px 1px 4px 4px rgba(20%,20%,40%,0.5) inset;
        border-radius: 6px;
    }
}
