.about-overlay {
    text-align: center;
}

.about-overlay > img {
    width: 650px;
}

.about-image > img {
    width: 200px;
    margin-top: -20px;
}

.information {
    justify-content: space-between;
    align-items: end;
    gap: 2.5rem;
    height: 100%;
    text-align: center;
    flex: 2;
    display: flex;
    margin-bottom: 30px;
}

.information section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background: radial-gradient(
        circle at 50% 50%,
        #a0bba6,
        #b9d4cf
    );
    width: 100%;
    height: 96%;
    border-radius: 0.5rem;
    padding: 5%;
    font-size: 15px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
section#strength, section#weakness {
    flex: 1;
    font-size: 12px;
}

section#info {
    flex: 2;
    height: 85%;
}

section .title {
    background: linear-gradient( 180deg, rgba(239, 88, 85, 1) 0%, rgba(255, 203, 202, 1) 100% );
    display: inline-block;
    border-radius: 2px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17.5px;
    padding: 0.2rem 1rem;
    margin-bottom: 1rem;
    padding-left: 50px;
    padding-right: 50px;
}

section .name {
    background: radial-gradient( circle at 50% 50%, rgba(239, 88, 85, 1), rgba(251, 169, 168, 1) );
    display: inline-block;
    border-radius: 1rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 17.5px;
    padding: 0.2rem 1rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.about-div {
    width: 85%;
    height: 31rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1rem;
    margin: 0 auto;
}

.strength-list, .weaknesses-list {
    width: 105px;
}

.strength-ulist, .weaknesses-ulist {
    display: inline-block;
    text-align: left;
}

.list-container {
    text-align: center;
}

.additional-info {
    flex: 1;
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    margin-top: 23px;
}

.additional-info section {
    width: 400px;
    height: 100%;
    text-align: center;
}

.additional-info .title {
    font-size: 26px;
    border-radius: 5px;
    color: #ef5855;
    -webkit-text-stroke: white 0.5px;
    text-stroke: white 0.5px;
    display: inline-block;
    background: linear-gradient( 90deg, #edd5c6 0%, #edb69a 100% );
}

#interest div, #skills div {
    border-radius: 1.5rem;
    background: #f3d1bc;
    padding: 0.5rem;
    display: flex;
    justify-content: space-evenly;
}

.interest-list img {
    width: 4rem;
    height: 4rem;
    margin-left: 5px;
    margin-right: 5px;
}

.pie {
    width: 4rem;
    height: 4rem;
    margin: 0;
    border-radius: 50% !important;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}

.pie-text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#html {
    background: conic-gradient(white 0% 33.3%, #fa9391 0% 66.7%) !important;
}

#css {
    background: conic-gradient(white 0% 41.7%, #fa9391 0% 58.3%) !important;
}

#js {
    background: conic-gradient(white 0% 83.3%, #fa9391 0% 16.7%) !important;
}

#flask {
    background: conic-gradient(white 0% 62.5%, #fa9391 0% 37.5%) !important;
}

#python {
    background: conic-gradient(white 0% 50%, #fa9391 0% 50%) !important;
}

/* Media query for responsive design */
@media only screen and (max-width: 768px) {
    .about-overlay > img {
        width: 100%;
    }
    
    .information {
        flex-direction: column;
        align-items: center;
    }

    .about-div {
        height: auto;
    }

    .about-image > img {
        width: 50%;
    }

    section#strength, section#weakness {
        flex: 1;
        width: 50%;
    }

    section#info {
        flex: 1;
        height: auto;
        margin-top: -13%;
    }

    .container {
        padding: 10%;
    }

    .additional-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .additional-info section {
        width: 100%;
    }

    .interest-list img {
        width: 3rem;
        height: 3rem;
    }

    .pie {
        width: 3rem;
        height: 3rem;
    }
}