body {
    background-color: #0e1117;
    color: #fafafa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.image-grid img {
    width: 100px;
    height: auto;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

button {
    background-color: #262730;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #4a4a52;
}

#output {
    max-width: 800px;
    margin: 0 auto;
}

.warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #ffeaa7;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
}

.success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
}

.info {
    background-color: #d1ecf1;
    color: #0c5460;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #bee5eb;
}

.balloon {
    position: absolute;
    font-size: 2em;
    animation: rise 3s ease-in-out;
    pointer-events: none;
}

@keyframes rise {
    0% {
        bottom: 0;
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
    }
}
