body
{
    /*text-align: center;*/
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14px;
    background-color: lightgray;
}

.container
{
    display: flex;
    justify-content: center;
    margin: 10% auto;
}

.content
{
    border: 1px solid black;
    background-color: white;
    width: 480px;
}

.content-table
{
    width: 100%
}

#namebox
{
    font-weight: bold;
    font-size: 16px;
    padding-top: 20px;
}

#toolbox
{
    padding-top:20px;
    text-align: center;
}

.tool
{
    margin-right: 10px;
    margin-left: 10px;
    padding: 4px;
    cursor: pointer;
}

.tool:hover
{
    background-color:silver;
}

.blur
{
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}