body {
    background: #0F0F0F;
    color: white;

    font-family: Consolas, monaco, monospace;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 26.4px;
    margin: 0;
}

h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 15.4px;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 15.4px;
    margin-top: 35px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
}

a {
    color: white;
}


dl {
    display: grid;
    grid-template-columns: max-content auto;
    margin: 10px 0;
}

dt {
    grid-column-start: 1;
}

dd {
    grid-column-start: 2;
    margin-left: 15px;
}

dl dd:nth-of-type(n+2) {
    margin-top: 4px;
}

td {
    padding-right: 20px;
}


#content {
    position: relative;

    left: 50%;
    transform: translate(-50%);

    width: 60%;
    min-width: 270px;

    padding: 25px;
    margin: 3% 0;

    background: #1F1F1F;
    border-radius: 15px;
}

@media only screen and (max-width: 800px) {
    #content {
        width: 80%;
    }
}


.link {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.line {
    background: white;
    width: 100%;
    height: 1px;
}

.flex-spacer {
    flex-basis: 100%;
}


.copy_icon {
    position: relative;
    filter: invert(100%);
    height: 20px
}






#tech-skills {
    display: grid;
    grid-template-columns: max-content;
    grid-column-gap: 50px;
    grid-row-gap: 5px;
}

#tech-skills span:nth-of-type(n+3){
    margin-top: 10px;
}

.tech-skills-wrap {
    grid-column: 2;
}


@media screen and (max-width: 600px) {
    .tech-skills-wrap {
        grid-column: 1;
        margin-left: 40px;
    }

    #tech-skills span:nth-of-type(n+3) {
        margin-top: 0;
    }

    
    #tech-skills span:nth-of-type(2n+3) {
        margin-top: 10px;
    }
}
