body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.hidden {
    display: none;
}

#game-area {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

#basket {
    position: absolute;
    background-image: url('../assets/basket.png');
    background-size: contain;
    background-repeat: no-repeat;
    bottom:20px;
}

.fruit {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

#score-board, #time-board {
    position: absolute;
    top: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    z-index: 10;
}

#score-board {
    left: 10px;
}

#time-board {
    right: 10px;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 767px) {
    #basket {
        bottom: 90px; /* Adjust this value as needed for mobile */
    }
}