/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.game-container {
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 10px;
    width: 400px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

h1 {
    color: #333;
}

.character {
    width: 50px;
    height: 50px;
    background-color: #E74C3C;
    border: 2px solid #333;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.game-board {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.falling-object {
    width: 40px;
    height: 40px;
    background-color: #3498DB;
    border: 2px solid #333;
    border-radius: 50%;
    position: absolute;
    animation: fall 2s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(100vh - 40px));
    }
}
