body {
    font-family: Arial, sans-serif;
    box-sizing: border-box;

}

.resume{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 20 auto;
    grid-auto-flow:dense;
    gap: 0;
    margin-left: 4em;
    margin-right: 4em;
}

.resume h1{
    font-size: 4vw;
    grid-column: span 2;
    justify-self: center;
    margin-bottom:0;
}

.resume h2{
    font-size: 3vw;
    grid-column: 2;
    margin-bottom: 0;
}

.resume h3{
    font-size: 2vw;
    grid-column: 2;
    margin-top: 0;
    margin-bottom: 0;
}

.resume h4{
    font-size: 1.5vw;
    grid-column: 2;
    margin-top: 0;
    margin-bottom: 0;
}

.resume ul, p{
    font-size: 1.5vw;
    grid-column: 2;
    margin-top: 0;
}

