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

.container {
    text-align: center;
    position: relative;
}

h1 {
    font-size: 2.5em;
    color: white;
    margin: 10px 0;
}

#score {
    font-size: 1.5em;
    color: white;
    margin: 10px 0;
    transition: all 0.5s ease; /* Smooth transition for size and color changes */
}

#video-container {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background-color: white;
}

#canvas-container {
    width: 100%;
    height: 100%;
}

#emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.emoji {
    position: absolute;
    font-size: 2em;
    animation: rise 2s ease-in-out;
}

@keyframes rise {
    0% {
        bottom: 0;
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}
