main {
    background-color: rgba(168, 71, 0, 0.3);
    color: rgb(247, 243, 221);
    margin: 5vw;
    margin-top: 3vh;
}

#profileSection {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    
}
#profileText h1 {
    font-size: 3Rem;
    align-self: center;
}
#profileSection h2 {
    font-size: 2Rem;
}
#profilePicture {
    display: inherit;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    justify-content: center;
    order: 0;
    width: 25vw;
}
#profilePicture img {
    border: .3rem solid rgb(247, 243, 221);
    border-radius: 50%;
    width: 15rem;
    height: 15rem;
    border-style: dashed;
}
#profileText {
    display: inherit;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;   
    width: 65vw;
    color: rgb(247, 243, 221);
    font-family: sans-serif;
    
}
#profileText a{
    text-decoration: underline;
    color: rgb(247, 243, 221);
}
#profileHeader {
    display: inherit;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    margin-right: 3vw;
}
#profileHeader img {
    filter: invert(100%);
    width: 10vh;
    height: 10vh;
}
#profileHeader img:hover {
    filter: none;
}
#skillSection{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    
}
ul#skillUL {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}
ul#skillUL ul{
    display: flex;
    flex-direction: column;
    list-style-type: square;
}