.learning-container {
    margin: auto;
    width: 60%;
    height: auto;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 3;
    pointer-events: none;
    transition: all 0.5s;
    padding: 20px;
    color: white;
    font-size: 2rem;
    font-family: MiSans;
    opacity: 1;
}

.learning-conatiner:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
}

.tech-stack {
    margin-top: 10px;
}

.tech-item {
    margin-bottom: 15px;
}

.tech-item span {
    display: block;
    margin-bottom: 5px;
}

.progress {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 10px;
}

.progress-bar {
    height: 100%;
    background-color: #c8acac;
    border-radius: 10px;
    transition: width 0.5s;
}
