/* Sets entire page */
*{
    max-width: 800px;
    margin:auto;
    font-family: Calibri;
}

/* Name Header */
#name-header
{
    margin-bottom: 1vh;
}

h1
{
    font-size: 69px;
}

/* Blue Headers */
h2
{
    color: #2097c9;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

/* Content Title */
h3
{
    margin-top: 0.7em;
    font-weight:normal;
    margin-bottom: 0.25em;
}

/* Content Subtitle */
h4
{
    font-weight: normal;
    font-size: 0.9em;
    color: rgb(124, 122, 122);
    margin-bottom: 0.25em;
}

/* Content Points */
.content-points ul li
{
    list-style-type: none;
}
.content-points ul li::before
{
    font-size: 1.3em;
    content: '\0022c6';
}
/* Nested Points */
.content-points ul ul li
{
    list-style-type: none;
}
.content-points ul ul li::before
{
    font-size: 1em;
    content: '\002606';
}

/* Body Border
body
{
    
} */

/* Divide into columns */
#content
{
    display: grid;
    grid-template-columns: 75% 25%;

    margin-top: 5vh;
    border-radius: 0.25em;
    border: solid 1px black;
    min-height: 90vh;
}
#right
{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
#left
{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Personal Info */
#logo img
{
    margin-top: 10vh;
    margin-bottom: 3vh;
    max-width: 100%;   
}
#email
{
    text-align: center;
}
#website
{
    text-align: center;
    margin-bottom: 3vh;
}

/* Skills */
#skills-header
{
    text-align: center;
}

#skills-header .content-list ul
{
    padding: 0;
    text-align: center;
    list-style-type: none;
}

#skills-header .content-list ul li
{
    color: rgb(124, 122, 122);
    margin-bottom: 0.3em;
}

/* Education */
#education-header
{
    margin-top: 8vh;
    text-align: center;
}
#education-header .content-title
{
    font-size: 0.9em;
}