*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif, Arial, Helvetica;
}

body {
    overflow: hidden;
}

.background{
    height: 100vh;
    width: 100vw;
    background: url('bg.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

.superman{
    height: auto;
    width: 150px !important;
    position: absolute;
    top: 40vh;
    left: 20vw;
    z-index: 100;
    transition: transform 0.1s ease;
    object-fit: contain;
}

.pipe_sprite {
    position: absolute;
    width: 80px;
    background: radial-gradient( red 25%, rgb(111, 2, 2));
    border: 3px solid black;
    z-index: 50;
}

.message{
    position: absolute; 
    z-index: 200;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.messageStyle{
    background: white;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    border: 2px solid #333;
}

.score{
    position: absolute;
    z-index: 200;
    font-size: 40px;
    font-weight: bold;
    color: white;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    top: 20px;
    left: 20px;
}

.score_val{
    color: gold;
    font-weight: bold;
}

@media only screen and (max-width: 1080px){
    .message{
        font-size: 20px;
        top: 50%;
        white-space: nowrap;
    }

    .score{
        font-size: 30px;
    }

    .superman{
        height: auto;
        width: 150px !important;
    }

    .pipe_sprite{
        width: 60px;
    }
}