body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

#game-container {
    position: relative;
    width: 800px;
    height: 600px;
    background-color: #333;
}

#paddle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background-color: #00f;
    border-radius: 10px;
}

#ball {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #f00;
    border-radius: 50%;
}

.brick {
    position: absolute;
    width: 75px;
    height: 20px;
    background-color: #0f0;
    border-radius: 5px;
}