*{
    box-sizing: border-box;
    font-family: 'Silkscreen',sans-serif;
    color: white;
}
body{
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: linear-gradient(180deg, #000000, #420878);
}

#backbtn{
    background-image: url("../img/backbtn.png");
    max-width: 100%;
    height: 50px;
    width: 100px;
    position: absolute;
    top: 20px;
    left: 10px;
}

#heading{
    text-align: center;
    color: goldenrod;
    font-size: 4.2vw;
}

.console{
    position: relative;
    background-color: #000000;
    display: block;
    width: 800px;
    height: 450px;
    margin: 0 auto;
}

#pad{
    position: absolute;
    background-color: whitesmoke;
    width:150px;
    height:20px;
    top: 400px;
    left:325px;
}
#ball{
    position: absolute;
    z-index: 1;
    background-color: whitesmoke;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 375px;
    left: 375px;
}
#pausebtn,#retry,#playbtn{
    display: none;
    height: 100px;
    width: 100px;
    position: absolute;
    top: 162px;
    left: 350px;
}
#pausebtn{
    background-image: url("../img/pause.png");
}
#retry{
    cursor: pointer;
    background-image: url("../img/retry.png");
}
#playbtn{
    display: block;
    cursor: pointer;
    background-image: url("../img/play.png");
}


.block{
    position: absolute;
    background-image: url('../img/block.png');
    background-size: cover;
    width: 100px;
    height: 40px;
}

.console_foot{
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    height: auto;
    width: 800px;
}