body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fdf6f9;
    font-size: 1.5rem;
    user-select: none;
    position: relative;
    height: 100vh;
}

#start-screen,#end-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7e8ff;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

#start-screen button,#end-screen button {
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
    margin-top: 20px;
    background-color: #cdb3ff;
    border: none;
    color: black;
}

#balloon-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.balloon {
    position: absolute;
    bottom: -50px;
    animation: floatUp linear;
    cursor: pointer;
    font-size: 100px;
}

#scoreboard {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.2rem;
    background-color: #ffd6e0;
    color: black;
    padding: 8px 15px;
    border-radius: 8px;
    z-index: 3;
}

@keyframes floatUp {
    from {
        bottom: -50px;
        opacity: 1;
    }
    to {
        bottom: 110%;
        opacity: 0.5;
    }
}