.margin-0{
    margin: 0px !important;
}
.gamearea{
    width: 100%;
    overflow: auto;
}
.gameplay{
    float: left;
}
#gamebox {
	margin: 0;
    padding: 0;
    font-family: 'Arial';
	user-select: none;
	position: relative;
	overflow: hidden;
    border: 1px solid #ddd;
}
#gamebox #topbar {
    width: 100%;
    background: palegreen;
    text-align: center;
    font-weight: bold;
    color: #686868;
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}
#gamebox #timer {
    color: red;
    font-weight: bold;
    padding-left:  6px;
}
#restart {
    position: absolute;
    display: inline;
    right: 10px;
    background-color: green;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    padding-left: 8px;
    padding-right: 8px;
}
#trynew {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: auto;
    background-color: #00BB00;
    font-family: Arial;
    color: red;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    display: none;
    padding: 10px 20px;
}
#gamebox #gameMain {
	position: relative;
	overflow: hidden;
    width: 100%;
}
#gamebox #dot {
	position: absolute;
	background: red;
	border-radius: 8px;
}

#gamebox #overmsg {
	position: absolute;
    top: 80px;
    width: 100%;
    text-align: center;
    font-style: italic;
    line-height: 50px;
    font-weight: 900;
    color: #fff;
    padding: 20px 0px 0px 0px;
	opacity: 0;
    transition: opacity 0.3s;
}

#gamebox #overmsg.full {
	opacity: 1;
}
#gamebox #overmsg.success {
    color: #fff;
    background: #4caf5085;
    height: 145px;
}
#overmsg.success span.next{
    font-style: normal;
    color: blue;
}
#gamebox #overmsg.fail {
    color: #fff;
    background: #f98369b8;
    height: 145px;
}
.paddle {
    position: absolute;
    width: 10px;
    background-color: #A1662F;
}
