body {
    font-family: Comic Sans MS, Arial;
    background: #e6f7ff;
    text-align: center;
}

.karakter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.karakter img {
    width: 120px;
}

.progress {
    width: 80%;
    height: 35px;
    background: #ddd;
    border-radius: 20px;
    margin: 20px auto;
    position: relative;
}

.rope {
    height: 100%;
    width: 10%;
    background: brown;
    border-radius: 20px;
    position: absolute;
    transition: 0.4s;
}

.timer {
    font-size: 22px;
    color: red;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    margin: auto;
}

.kolom {
    width: 25%;
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    min-height: 260px;
}

.kolom h3 {
    background: #4caf50;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.kolom.nonaktif {
    opacity: 0.4;
}

.tengah {
    width: 45%;
    text-align: center;
}

.progress {
    width: 90%;
    height: 40px;
    background: #ddd;
    border-radius: 25px;
    margin: 20px auto;
    position: relative;
}

.rope {
    width: 15%;
    height: 100%;
    background: #8b4513;
    position: absolute;
    border-radius: 25px;
    transition: 0.4s;
}

.karakter {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.karakter img {
    width: 120px;
}

.timer {
    font-size: 26px;
    color: red;
}
.menang {
    font-size: 48px;
    color: #ff5722;
    animation: zoom 1s infinite;
    margin-top: 100px;
}

@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
