/* =========================================================*/
/*                          ABOUT                           */
/* =========================================================*/

#about {
    flex-direction: column;
    background-color: var(--clr-primary-200);
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: auto;  
    padding: 0 20vw
}
#about .aboutMeContent{
    display: flex; 
    flex-direction: column;
    color: var(--clr-primary-900);
    
}
#about img {
    width: 50%;
    margin: 1rem 0;
}
#about h2.subheading {
    align-self: center;
}
/* #about h5.subheading,
#about .skills-list p
#about .aboutMeContent p {
    margin-left: 2rem;
} */
#about h2,
#about h1 {
    margin: 1rem 0;
}
#about h4 {
    margin: 1.5rem 0;
}
#about ul {
    padding: 0 0 0 1rem;
}
#about li {
    list-style-type:circle;
}
.skills-container {
    overflow: hidden;
    display: flex;
    max-width: 1200px;
    width: 100vw;
    
}
.blur {
    position: absolute; 
    width: 100%; 
    height: 100%;
    box-shadow: inset 3px 3px 10px 0 #000000;
    top: 0; 
    left: 0;
}
.skills {
    display: flex;
    justify-content: space-around;
    animation: marquee 15s linear infinite;
    margin: 2rem 0 0 0;
}
@keyframes marquee {
	0%   { transform: translateX(-100%); }
	100% { transform: translateX(0%); }
}
.skills svg {
    width: 36px;
    margin: 1rem;
}
.skill-icon {
    fill: var(--clr-primary-300);
}
.skills-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* ===================================================== */
/* Wide Screen */
@media screen and (min-width:1920px) {
    #about .aboutMeContent, 
    #about h2,
    #about form {
        max-width: 1200px;
    }
}
@media screen and (max-width:820px) {
    #about {
        padding: 1rem 5rem;
    }
    #about h4.subheading {
        margin: 1rem 0;
    }
    #about .subheading {
        margin: 0 0 1rem 0;
    }

}
@media screen and (max-width:480px) {
    #about {
        padding: 1rem 2rem;
    }

    #about h2.subheading {
        margin: 1rem 0;
        align-self: flex-start;
    }
    .skills-list div {
        width: auto;
    }
}