main {
    width: 100%;
    height: 100%;
    background-color: #1a253a;
    background-image: url(../img/img104.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-main {
    width: 1000px;
    margin: 0 auto;
}

main a {
    margin-top: 30px;
    font-size: 18px;
    display: block;
    height: 36px;
    line-height: 36px;
    background-color: var(--border-color-01);
    padding: 0 20px;
    width: fit-content;
    text-transform: uppercase;
}

main a:hover {
    background-color: var(--site-color-01-hover);
}

main p {
    font-size: 14px;
    line-height: 30px;
}

/* Fixed navbars use position: fixed, meaning they’re pulled from the normal flow 
   of the DOM and may require custom CSS (e.g., padding-top on the <body>) to 
   prevent overlap with other elements.*/
main .main-intro {
    padding-top: 100px;
}

main .main-intro h1 {
    font-size: 48px;
    line-height: 60px;
    text-align: center;
}

main .main-intro p {
    padding-left: 20px;
}

main .main-quotes p {
    border-left: 4px solid var(--border-color-01);
    padding-left: 15px;
    margin: 40px 0;
}

/* Offset second quote - targeting the 2nd paragrapph */
main .main-quotes p:nth-child(2) {
    margin-left: 100px;
}

main .main-intro {
    right: 20vh;
    padding-bottom: 8vh;
}

main .main-quotes {
    left: 80vh;
    padding-bottom: 8vh;
}

/*  CATEGORY SECTION */

.index-category {
    width: 100%;
    padding: 60px 0;
    background-color: #7a5e5e;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.index-category p {
    color: #1a253a;
    text-align: center;
    padding-bottom: 10px;
    flex-basis: 100%;
    text-transform: uppercase;
    font-size: 22px;
}

.index-category-box {
    width: 200px;
    height: 180px;
    background-color: #618176;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.index-category-box:nth-child(2) {
    background: url(../img/img100.jpg);
    background-size: cover;
    border-radius: 10px;
}

.index-category-box:nth-child(3) {
    background: url(../img/img101.png);
    background-size: cover;
    border-radius: 10px;
}

.index-category-box:nth-child(4) {
    background: url(../img/img102.jpg);
    background-size: cover;
    border-radius: 10px;
}

.index-category-box:nth-child(5) {
    background: url(../img/img103.png);
    background-size: cover;
    border-radius: 10px;
}

.dark-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    transition: all ease-in-out 200ms;
    border-radius: 10px;
}

.index-category-box:hover .dark-overlay {
    opacity: 0;
}

.index-category-box h3 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    text-shadow: 0px 2px 4px #000;
    z-index: 100;
}

/* ABOUT SECTION */

.index-about {
    width: 100%;
    padding: 20px 0;
    background-color: #1a253a;
}

.index-about-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 60px;
}

.index-about-image img {
    width: 200px;
    border-radius: 30px;
}

.index-about-text {
    flex-basis: 300px;
}

.index-about-text p {
    padding: 30px 0;
}

.index-about-text a {
    font-size: 18px;
    display: block;
    height: 36px;
    line-height: 36px;
    background-color: var(--border-color-01);
    padding: 0 20px;
    width: fit-content;
    text-transform: uppercase;
}

.index-about-text a:hover {
    background-color: var(--site-color-01-hover);
}

.index-about-skill {
    flex-basis: 350px;
}

.index-about-skill-bar {
    width: 100%;
    height: 15px;
    border: 2px solid #7a5e5e;
}

.index-about-skill-bar-fill {
    width: 100%;
    height: 100%;
    background-color: var(--border-color-01);
}

.as {
    width: 60%;
}

.py {
    width: 45%;
}

.php {
    width: 60%;
}

.net {
    width: 85%;
}
