:root {
    --oxford-blue: #0b132b;
    --verdigris: #5bc0be;
    --fluorescent-cyan: #6FFFE9;
    --yin-blue: #3a506b;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--oxford-blue);
    font-family: 'Aldrich', sans-serif;
    color: var(--verdigris);
}

a {
    text-decoration: none;
    color: var(--fluorescent-cyan);
}

/**************** id's ****************/

#main-content {
    max-width: 90vw;
    /* max-height: 90vh; */
    margin: auto;
}

#body-content {
    padding-left: 1.25rem;
}

#body-content section {
    margin: 2rem 0;
}

#body-content section h2 {
    margin: 1rem 0;
    font-size: 2rem;
    color: var(--fluorescent-cyan);
}

#body-content .about-me .my-pic {
    width: 15rem;
    height: 15rem;
    border: .1rem solid var(--fluorescent-cyan);
    border-radius: 50%;
}

#skills-table {
    width: 50%;
    margin: 0 auto;
}

#skills-table th {
    text-align: left;
    font-size: 1.25rem;
    color: var(--fluorescent-cyan);
}

#skills-table td, #skills-table th {
    padding: 8px;
}

#projects p {
    margin-bottom: 1rem;
}


/**************** classes ****************/

.greetings {
    background: var(--yin-blue);
}

.greetings-intro {
    font-size: 1.5rem;
    padding: 1rem 0 0 1rem;
}

.name {
    font-size: 4.75rem;
    padding: 0.75rem 0 0 0.7rem;
    color: var(--fluorescent-cyan);
}

.text-intro {
    text-align: center;
    margin: 8rem 0;
    font-size: 1.5rem;
}

.nav-list-items {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 1.25rem;
    /* background-color: teal; */
    color:  var(--fluorescent-cyan);
}

.nav-list-items a {
    color:  var(--fluorescent-cyan);
}

.contact-me {
    padding-left: .8rem;
}

.contact-me img:hover {
    box-shadow: 0 0 3rem var(--white);
}

.contact-me img {
    margin: .5rem .25rem 0 .3rem;
}

.nav-list-items li {
    margin: 0 0.6rem;
    font-size: 1.15rem;
}

.nav-list-items li:hover {
    cursor: pointer;
    text-shadow: 0 0 2rem var(--white);
}

.specs {
    display: flex;
    flex-direction: row-reverse;
}

.specs p {
    margin: 0.3rem 0;
}

.personal-info {
    font-size: 1.25rem;
    color: var(--fluorescent-cyan);
}

.qa {
    color: var(--fluorescent-cyan);
}

.questions-section p {
    margin: 0.5rem 0;
    line-height: 1.5rem;
}
