#about {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    overflow: scroll;
}
.about-profile {
    width: 100%;
    height: auto;
    padding: 1.5rem 1rem 1rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.container-img-profile {
	position: relative;
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.container-img-profile:hover {
    transform: scale(1.1);
}
.container-img-profile:active {
	transform: scale(0.9);
	transition: all 0.05s ease;
}

.container-img-profile::before {
    content: "";
	position: absolute;
	width: calc(100% + 0.75rem);
	height: calc(100% + 0.75rem);
	border: 0.1rem solid var(--primary);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.container-img-profile::after {
    content: "";
	position: absolute;
	width: calc(100% + 1.5rem);
	height: calc(100% + 1.5rem);
	border: 0.2rem dashed var(--primary);
	border-radius: 50%;
	animation: rotate 30s linear infinite;
	transition: all 0.3s ease;
}

@keyframes rotate {
	100% {
		transform: rotateZ(360deg);
	}
}

.about-profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.about-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    max-width: 70%;
    gap: 0.5rem;
}
.about-description h1 {
    color: var(--white);
    font-size: 1.5rem;
    width: 100%;
}
.about-description p {
    width: 100%;
    color: var(--text);
    line-height: 1.5;
    margin-top: 0;
}
.personal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.personal-info h2 {
    color: var(--white);
}
.personal-info ul li {
    margin-bottom: 0.5rem;
}
.personal-info .container {
    display: flex;
    flex-wrap: wrap;
    border: 2px dashed var(--primary);
    border-radius: 1rem;
}
.basic-information, .contact-information {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 1;
    padding: 1rem;
    min-width: max-content;
    background-color: var(--box);
    padding: 1rem;
    gap: 1rem;
}
.basic-information h3, .contact-information h3 {
    color: var(--white);
}
.personal-info ul {
    list-style-type: none;
    
}
.personal-info li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.personal-info li span:nth-child(2), .personal-info li span:nth-child(3) {
    display: flex;
    font-size: 0.9rem;
    min-width: 100px;
    width: max-content;
}
.personal-info li span:nth-child(1) {
    border: 2px solid transparent;
}
.personal-info li span:nth-child(2) {
    color: var(--white);
}
.skills {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem; 
}
.skills h2 {
    width: 100%;
    color: var(--white);
}
#Programming-skills, #software-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    border-radius: 1rem;
    border: 2px dashed var(--primary);
    padding: 1rem;
}
#Programming-skills h3, #software-skills h3 {
    color: var(--white);
}
#Programming-skills .container, #software-skills .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 0.5rem;
}
.skill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.skill p {
    min-width: 8rem ;
    font-size: 0.9rem;
    color: var(--white);
}
.progress-bar {
    width: 100%;
    background-color: var(--background);
    border-radius: 5px;
    overflow: hidden;
}
.progress {
    height: 0.25rem;
    border-radius: 0.125rem;
    background-color: var(--primary);
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
}
