

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --border: 3px solid #444;
    --name-size: 26pt;
    --header-size: 20pt;
    --subheader-size: 16pt;
    --body-size: 12.5pt;
    --vert-rhythm: 12px;
}

.page {
    width: 8.5in;
    height: 11in;
    font-size: var(--body-size);
}
.page:nth-last-of-type(1){
    margin-top: 10px;
}

/* ----------- info --------------- */

#info {
    display: flex;
    border-bottom: var(--border);
    justify-content: end;
    align-items: flex-end;
}

#info h1 {
    display: inline-block;
    font-size: var(--name-size);
    font-weight: 600;
    margin: 0 auto;
    padding-right: 10px;
    padding-bottom: var(--vert-rhythm);
    text-align: center;
    line-height: 1;
}

#info h1 span {
    font-size: var(--header-size);
    font-weight: 100;
}

.links-list {
    display: inline-flex;
    flex-direction: column;
    list-style-type: none;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 10px;
    margin-bottom: var(--vert-rhythm);
    gap: var(--vert-rhythm);
    border-left: var(--border);
}

.links-list li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.links-list li i{
    padding-right: 10px;
}
.links-list li a{
    display: inline;
    color: black;
    text-decoration: none;
}
.links-list li a:hover{
    text-decoration: underline;
}

/* -----------summary------------- */

#summary {
    padding-top: var(--vert-rhythm);
    padding-bottom: var(--vert-rhythm);
    border-bottom: var(--border);
    text-align: center;
}
#summary h2 {
    padding-bottom: var(--vert-rhythm);
}
h2 {
    font-size: var(--header-size);
    font-weight: 500;
    line-height: .8;
}
#summary p {
    line-height: 1.4;
}

/* --------skills ------------ */

.container {
    display: flex;
    width: 100%;
}
.skills {
    padding-top: 15px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    min-width: 260px;
}

h3 {
    font-weight: 500;
    padding-top: var(--vert-rhythm);
    border-bottom: .5px solid #555;
}

ul.skills-list {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    gap: 6px;
}

ul.skills-list li{
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
ul.skills-list li i{
padding-top: 4px;
}
.skills:nth-last-of-type(1) h2 {
    margin-top: 15px;
}

/* ----------projects----------------  */

#projects{
    margin-top: 15px;
}
#projects, #education {
    padding-left: 33px;
    border-left: var(--border);
}
#projects .info, #education .info  {
    font-style: oblique;
    padding-bottom: var(--vert-rhythm);
}
#projects ul, #education ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style-type: none;
}
#projects ul li, #education ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
#projects ul i, #education ul i{
    padding-top: 4px;
}
#projects span {
    padding-top: 7px;
    display: block;
    margin-left: -15px;
    font-weight: 500;
}

#education {
    margin-top: 15px;
}