.content {
    display: flex;
}

.wrapper {
    margin-top: 12% !important;
}

.introduction {

    display: flex;
    flex-direction: column;
}

.introduction > h1 {
    width: 100%;
    text-align: center;
}

.introduction > img {
    width: 100%;
    height: 14rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.content > .introduction {
    width: 40%;
    border-right: 1px solid #008080;
    padding: 0 3rem 0 3rem;
    display: flex;
    flex-wrap: wrap;
}

.content > .introduction > .title-container > h1 {
    line-height: 2rem;
    margin-bottom: 1.4rem;
}

.content > .introduction > p {
    text-align: justify;
}

.content > .skills {
    width: 60%;
    padding: 0 3rem 0 3rem;
}

progress::-webkit-progress-value,
progress {
    accent-color: #008080;
    width: 70%;
    -webkit-filter: drop-shadow(0px 0px 3px #00e1ff);
    filter: drop-shadow(0px 0px 3px #00e1ff);

}

.skills > h1 {
    line-height: 2rem;
    margin-bottom: 1rem;

}

.skills > h2 {
    margin-top: 2rem;
}

.skills > h1:not(:first-child) {
    margin-top: 5rem;
}

.skills > ul > li {
    margin-left: 2rem;
}

/*progressbar animations*/
/* Define the keyframes */
@keyframes fillProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Style the progress bars */
aside .skills progress {
    width: 100%; /* Ensures the progress bar takes full width */
    -webkit-appearance: none; /* Removes default styling */
    appearance: none;
}

/* For Webkit browsers */
aside .skills progress::-webkit-progress-bar {
    background-color: #e0e0e0; /* Background color of the bar */
}

aside .skills progress::-webkit-progress-value {
    background-color: #4caf50; /* Color of the progress */
    animation: fillProgress 2s forwards; /* Apply animation */
}

/* For Firefox */
aside .skills progress::-moz-progress-bar {
    background-color: #4caf50;
    animation: fillProgress 2s forwards;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

@media only screen and (max-width: 1000px) {

    .wrapper {
        margin-top: 2rem !important;
    }

    .content {
        flex-direction: column;
    }

    .content > .introduction {
        width: 90%;
        border-right: none;
    }

    .content > .skills {
        width: 90%;
        margin-top: 5rem;
        padding-top: 5rem;
        border-top: 1px solid #008080;
    }

    .skills > progress {
        width: 100%;
    }

    .button {
        display: block;
        margin-bottom: 1rem;
    }


}