html
{
    height: 100%;
}

body
{
    background-color: black;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 20px;
    padding-bottom: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#message
{
    color: white;
    font-family: monospace;
    font-size: 60px;
    align-self: center;
    margin-bottom: 20px;
}

.paddle
{
    height: 128px;
    width: auto;
    image-rendering: pixelated;
    position: absolute;
    top: calc(50% - 64px);
}

#penger
{
    left: 20px;
}

#ponger
{
    right: 20px;
}

#ball
{
    position: absolute;
    display: block;
    background-color: white;
    width: 32px;
    height: 32px;
    left: calc(50% - 16px);
    top: calc(50% - 16px);
    border-radius: 8px;
}

#field
{
    position: relative;
    height: 100%;
    width: 100%;
    border: 10px dashed white;
    box-sizing: border-box;
    cursor: none;
}

.left
{
    height: 100%;
    width: calc(50% + 5px);
    border-right: 10px dashed white;
    box-sizing: border-box;
}