/* 
Ref:
- https://stackoverflow.com/questions/991160/how-to-make-my-font-bold-using-css 
*/

main {
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--pitt-blue);
    margin-top: var(--header-height);
    background-image: url(../img/strayer_headshot_cropped_noBack.png), url(../img/pitt_background.jpeg);
    background-size: 25vh, 100% 100%;
    background-repeat: no-repeat;
    background-position: 80vw bottom, center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--header-height);
    /* column-gap: 220px; */
}

main p {
    font-size: 18px;
    line-height: 30px;
}

main a {
    margin-top: 30px;
    font-size: 18px;
    line-height: 30px;
    display: block;
    background-color: var(--site-color-01);
    padding: 10px 20px;
    width: fit-content;
}

main a:hover {
    background-color: var(--site-color-01-hover);
}

main .main-intro h1 {
    font-size: 84px;
    line-height: 94px;
    text-align: center;
}

main .main-quotes p {
    border-left: 4px solid var(--site-color-01);
    padding-left: 20px;
    margin: 40px 0px;
}

main .main-quotes p:nth-child(2) {
    margin-left: 100px;
}

main .main-intro {
    position: relative;
    right: -30vh;
    /* padding-bottom: 8vh; */
}

main .main-quotes {
    position: relative;
    left: 30vh;
    /* padding-bottom: 8vh; */
}

/* ABOUT SECTION */
.index-about {
    width: 100%;
    padding: 60px 0px;
    background-color: var(--background-color-01);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 60px;
}

.index-about-image img {
    width: 450px;
    height: 450px;
    border-radius: 450px;
}

.index-about-text {
    flex-basis: 450px;
}

.index-about-text p {
    font-size: 16px;
    padding: 20px 0px;
}

.index-about-text a {
    font-size: 18px;
    line-height: 30px;
    display: block;
    background-color: var(--site-color-01);
    padding: 10px 20px;
    width: fit-content;
}

.index-about-text p a {
    font-size: 16px;
    line-height: 30px;
    display: initial;
    background-color: initial;
    padding: 0px 0px;
    width: initial;
    text-decoration: underline;
}

.index-about-text a:hover {
    background-color: var(--site-color-01-hover);
}

.index-about-skill {
    flex-basis: 450px;
}

.index-about-skill p {
    font-size: 16px;
    line-height: 32px;
    flex-basis: 450px;
}

.index-about-skill-bar {
    width: calc(100%- 8px);
    height: 20px;
    border: 4px solid #0B0F16;
}

.index-about-skill-bar-fill {
    height: 100%;
    background-color: var(--site-color-01);
}

.c {
    width: 75%;
}

.cad {
    width: 40%;
}

.cfd {
    width: 93%;
}

.data {
    width: 85%;
}

.fea {
    width: 78%;
}

.ml {
    width: 83%;
}

.python {
    width: 90%;
}

.rm {
    width: 93%;
}

.type {
    width: 89%;
}

