body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #87ceeb;
}

#game-container {
    text-align: center;
    position: relative;
}

#game-area {
    position: relative;
    width: 400px;
    height: 600px;
    background-color: #fff;
    border: 2px solid #000;
    overflow: hidden;
    margin: 0 auto;
}

#basket {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: #8b4513;
    transform: translateX(-50%);
}

.star {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #ff0;
    border-radius: 50%;
}

#score-container {
    margin-top: 20px;
    font-size: 20px;
}

#controls {
    position: absolute;
    bottom: 15%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

#pause-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #ff8c00;
    color: white;
    border-radius: 5px;
}

button {
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    margin: 5px;
    border: none;
    background-color: #ff8c00;
    color: white;
    border-radius: 5px;
}

button:active {
    background-color: #e07b00;
}
