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

.container {
    text-align: center;
}

.tech-character {
    margin-bottom: 20px;
}

#tech-image {
    width: 150px;
    height: auto;
    animation: bounce 2s infinite;
}

.message {
    font-size: 1.5em;
    color: #333;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
