main {
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin-top: 70px;
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 100;
}

main h1 {
    width: 100%;
    flex-basis: 100%;
    margin-top: 10px;
    font-size: 4rem;
    text-align: center;
}

section {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 800px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.subnav {
    padding: 0;
}

.subnav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.subnav a {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    line-height: 2.7rem;
    color: #000;
    display: block;
    height: 100%;
    transition: all ease-in-out 200ms;
    text-decoration: underline;
    text-align: center;
    padding: 10px;
}

.subnav a:hover {
    color: red;
}

.anchor {
    display:block;
    padding-top:100px;
    margin-top:-100px;
}

.resume {
    display: flex;
    flex-wrap: wrap;
}

.coverletter .indent {
    display: flex;
    justify-content: right;
}

.coverletter .indentcontent {
    width: 95%;
    text-indent: 20px;
}

.resume {
    display: flex;
    flex-wrap: wrap;
}

.resume p, .coverletter p {
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #000;
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
}

.coverletter a {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #000;
    text-decoration: underline;
}

.resume ul, .coverletter ul {
    text-indent: 50px;
    width: 100%;
    list-style: disc;
    margin-bottom: 20px;
    padding-left: 50px;
}

.resume li, .coverletter li {
    text-indent: 0px;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #000;
}

.resume h1 {
    width: 100%;
    flex-basis: 100%;
    font-size: 4rem;
    text-align: center;
}

.resume h2, .resume h2 a {
    width: 100%;
    flex-basis: 100%;
    margin-top: 10px;
    font-size: 3rem;
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;
}

.resume h5, .resume h5 a {
    font-family: 'Oswald', sans-serif;
    width: 100%;
    flex-basis: 100%;
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: bold;
    text-transform: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.resume h5 a {
    text-decoration: underline;
}

hr {
    border: 1px solid #000;
}

.resume h3 {
    font-size: 2.5rem;
    font-weight: bold;
    width: 100%;
    flex-basis: 100%;
    text-transform: none;
}

.push {
    margin-left: auto;
}

.resume h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.rightjustified {
    width: 100%;
}

.rightjustified p {
    width: 100%;
    text-align: right;
    display: block;
}

.backtotop {
    text-align: center;
    flex-basis: 100%;
    font-size: 2rem;
    text-decoration: underline;
    transition: all ease-in-out 200ms;
    margin-bottom: 20px;
}

.backtotop:hover {
    color: red;
}

.category {
    /*background-image: linear-gradient(red,yellow);*/
    max-width: none;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;;
}

.category .barleft {
    height: 5px;
    flex-grow: 1;
    background-image: linear-gradient(to right,yellow,red);
}

.category .barright {
    height: 5px;
    flex-grow: 1;
    background-image: linear-gradient(to right, red, yellow);
}

.category h3 {
    font-size: 3rem;
    margin: 0 20px;
}

@media only screen and (min-width: 768px) {

    main {
        margin-top: 110px;
    }

}