.chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 20px; */
}

.level {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
    min-width: 150px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.box img {
    width: 160px;
    height: auto;
    border-radius: 2%;
    margin-bottom: 10px;
}

.box:nth-child(1) {
    animation-delay: 0.2s;
}

.box:nth-child(2) {
    animation-delay: 0.4s;
}

.box:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.line {
    width: 2px;
    height: 20px;
    /* background: black; */
    margin: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .level {
        flex-direction: column;
    }

    .line {
        height: 2px;
        width: 20px;
        margin: 10px auto;
    }

    .box {
        width: 80%;
        margin: 10px auto;
    }
}

.name {
    font-weight: bold;
    font-size: 19px;
}