* {
    margin: 0;
    padding: 0;
}

.inconsolata {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1,h2,h3,h4 {
    font-family: "Inconsolata";
    text-align: center;
    color:rgb(255, 238, 174);
    text-shadow: 0 1px rgb(190, 57, 0)
}
body {
    margin-top: 5px;
    background: goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-family: "Inconsolata";
}

#game-container{
    position: relative;
    width: 410px;
    height: 600px;
    border: 2px solid #fff;
    overflow: hidden;
    background-image: url(../img/background1.png);
    background-size:cover;
    background-color: #ff000000;
}

#player {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 120px;
    height: 200px;
    background-image: url("../img/vboy_wait1.png");
    background-size:cover;
    transform: translateX(-50%);
}
.falling-object{
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(../img/Volleyball.png);
    background-size: cover;

}

#score {
    position:absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: white;
}

#align {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* space between game and text */
}