html
{
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000000;
    color: #000000;
    height: 100vh;
}

body
{
    font-family: Verdana, Geneva, sans-serif;
    background: #000000;
    color: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas
{
    display: block;
}

.runtime-container
{
    position: absolute;
    background: #000000;
    height: 50px;
    top: 26px;
    left: 26px;
    display: flex;
    background:transparent;
    justify-content: center;
    align-items: center;
}

.outline-btn
{
    position: absolute;
    padding: 12px 40px;
    font-size: 18px;
    border: 2px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-btn-low 
{
    padding: 8px 20px;
    font-size: 12px;
    transform: translate(-85px, 64px);
}

.outline-btn-medium
{
    padding: 8px 20px;
    font-size: 12px;
    transform: translate(0px, 64px);
}

.outline-btn-high
{
    padding: 8px 20px;
    font-size: 12px;
    transform: translate(85px, 64px);
}

.outline-quality
{
    padding: 8px 20px;
    font-size: 10px;
    position: absolute;
    color: #FFFFFF;
    transform: translate(-150px, 64px);
}

.outline-signature
{
    padding: 8px 20px;
    font-size: 10px;
    position: absolute;
    color: #FFFFFF;
    transform: translate(0px, 120px);
    text-align: center;
}

.outline-title
{
    position: absolute;
    color: #FFFFFF;
    transform: translate(0px, -100px);
    text-align: center;
    font-size: 26px;
}

.content-runtime
{
    position: relative;
}

.content-runtime-small
{
    position: relative;
    font-size: 12px;
    padding: 6px 16px;
}

.content-runtime-label
{
    background: transparent;
    color:#FFFFFF;
    border: 0px solid #FFFFFF;
    border-radius: 0px;
}

.outline-btn:hover
{
    background: #FFFFFF;
    color: #000000;
}

#joystick-container
{
    position: fixed;
    bottom: 60px;
    left: 60px;
    width: 128px;
    height: 128px;
    z-index: 1000;
    background: rgba(0,0,0, 0.0);
    touch-action: none;
}

#joystick-base
{
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.0);
    border-radius: 50%;
}

#joystick-thumb 
{
    border-radius: 50%;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255, 0.3);
    position: absolute;
}