body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}


.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    animation: fadeIn 2s;
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
    animation: fadeIn 3s;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.details {
    margin-bottom: 2em;
    animation: fadeIn 4s;
}

.contact {
    margin-top: 2em;
    animation: fadeIn 5s;
}

.contact p {
    font-size: 1.2em;
    margin-top: 0.5em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#balloon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.balloon {
    position: absolute;
    width: 50px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: floatUp 10s linear;
    pointer-events: auto;
}

@keyframes floatUp {
    to {
        bottom: 100%;
    }
}

.balloon::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 15px;
    background-color: inherit;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
}
#score-display {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}
