body{
    background: lightgrey;
}

#container{
    background: linear-gradient(to right, #0f0c29 , #302b63, #24243e);
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 544px;
    width: 1088px;
}

#user-score, #comp-score{
    color: white;
    position: absolute;
    top: 12px;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

#user-score{
    left: 262px;
}

#comp-score{
    left:806px
}

img{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    height: 544px;
    width: 272px;
}

#user-paddle, #comp-paddle{
    position: absolute;
    background: white;
    height: 72px;
    width: 10px;
}

#ball{
    background-color: red;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
}

#button{
    position: absolute;
    top: 47%;
    left: 41%;
    background:linear-gradient(#e66465, #9198e5);
    width: 200px;
    height: 100px;
    border-radius: 20px;

    font-size: 50px;
}

#button:hover{

    background:linear-gradient(#ceaaaa, #60c579);

}