body {
    font-family: Robotoregular, Helvetica, sans-serif;
    font-size: 14pt;
    --myBlue : #0070C0;
    --myIndent: 130px;
    --myNegativeIndent: -130px;
    max-width: 1024px;
    margin: auto;
    padding: 10px;
    text-align: left;
}

h1 {
    font-family: Robotobold, Helvetica, sans-serif;
    color: blue;
    color: var(--myblue);
    font-size: 36px;
    font-style: bold;
}

h2 {
    font-family: Robotobold, Helvetica, sans-serif;
    color: blue;
    color: var(--myBlue);
    font-size: 18pt;
    font-style: bold;
}

h3 {
    font-family: Robotobold, Helvetica, sans-serif;
    color: black;
    font-size: 18pt;
    font-style: bold;
}

h4 {
    font-family: Robotobold, Helvetica, sans-serif;
    color: blue;
    color: var(--myBlue);
    font-size: 14pt;
    font-style: bold;
}

h5 {
    font-family: Robotobold, Helvetica, sans-serif;
    color: black;
    font-size: 14pt;
    font-style: bold;
}

p {
    color: black;
    font-size: 14pt;
}

hr {
    border-color: blue;
    background-color: blue;
    border-color: var(--myBlue);
    background-color: var(--myBlue);
    
}

ul {
    font-family: Robotoregular, Helvetica, sans-serif;
    font-size: 14pt;
    text-align: left;
    list-style-type: circle;
}



.box {
    display: inline-block;
    max-width: 50%;
    min-width: 300px;
}

.experienceIndent {
    padding-left: 130px;
    padding-left: var(--myIndent);
}

.experienceBulletIndent {
    padding-left: 130px;
    padding-left: var(--myIndent);
    margin-left: 20px;
}



.compTitle {
    font-family: Robotobold, Helvetica, sans-serif;
    color: blue;
    color: var(--myBlue);
    font-size: 14pt;
    font-style: bold;
}


.indent {
    text-indent: -130px;
    margin-left: 130px;
    text-indent: var(--myNegativeIndent);
    margin-left: var(--myIndent);
}

.noIndent {
    float: left;
    width: 130px;
    width: var(--myIndent);
}


button {
    width: 120px;
    font-size: 9pt;
    color: white;
    background-color: blue;
    background-color: var(--myBlue);
}

button:hover {
    background-color: #0050A0;
    color: var(--myBlue);
}
