.header-container{
    display: flex;
    flex-direction: row;
    
}
.header-box{
    width: 49%;
    display: flex;
    flex-direction: column;
}
/* left boxes */
.box-item{
    display: flex;
    flex-direction: column;
    background-color: #101010;
    height: 49%;
    padding: 8%;
    
}
/* right box */
.box-item-right{
    background-color: #101010;
    height: 100%;
    padding: 8%;
    
}

/* this content container spaces item BETWEEN */
.content-container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* this content container spaces items EVENLY */
.content-container-even{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* based in Austin */
.right-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.rb-item{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.based{
    margin-right: 10px;
}

/* social icons */
.social-icon{
    margin-left: 20px;
}
.social{
    opacity: 1;
    transition: .2s ease-in-out;
}
.social:hover{
    opacity: .5;
}

/* past job titles and companies */
.job-container-outer{
    display: flex;
    align-items: center;
}
.job-container-outer:nth-child(-n + 2){
    margin-bottom: 5%;
}
.numba{
    margin-right: 4%;
    font-size: 20px;
    font-weight: 300;
    opacity: .5;
    color: white;
}

.p-container{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin-bottom: 50px;
}




@media only screen and (max-width: 1000px){
    .header-container{
        flex-direction: column;
    }
    
    .header-box{
        width: 100%;
    }
    
    .box-item{
        padding: 30px;
    }
    
    .cog-vert{
        margin: 1%;
    }

    .cog-spacer{
        height: 30px;
}

    .box-item-right{
        padding: 30px;
    
}

}
