main {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #1a253a;
    margin-top: 60px;
    background-image: url(../img/portrait.png), url(../img/bg.png);
    background-size: 100vh, cover; /*sizing the person*/
    background-repeat: no-repeat;
    background-position: top, center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

main .main-intro h1 {
    font-size: 96px;
    line-height: 106px;
}

main p{
    font-size: 18px;
    line-height: 30px;
}

main a{
    margin-top: 30px;
    font-size: 18px;
    display: block;
    background-color: var(--site-color-01);
    padding: 10px 20px;
    width: fit-content;
}

main .main-quotes p {
    border-left: 4px solid var(--site-color-01);
    padding-left: 20px;
    margin: 40px 0;
}

main .main-quotes p:nth-child(2){
    margin-left: 100px;
}

main .main-intro {
    position: relative;
    right: 20vh;
    padding-bottom: 8vh;
}

main .main-quotes {
    position: relative;
    left: 20vh;
    padding-bottom: 8vh;
}

/* CATEGORY SECTION */

.index-category {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

.index-category p {
    color: #111;
    text-align: center;
    padding-bottom: 40px;
    flex-basis: 100%;
    text-transform: uppercase;
    font-size: 22px;
}

.index-category-box {
    width: 200px;
    height: 200px;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /*so the dark overlay wont cover the hero section*/
}

/*nth-child(1) is CATEGORIES*/
.index-category-box:nth-child(2) {
    background-image: url(../img/categories/programming.png);
}

.index-category-box:nth-child(3) {
    background-image: url(../img/categories/filming.png);
}

.index-category-box:nth-child(4) {
    background-image: url(../img/categories/editing.png);
}

.index-category-box:nth-child(5) {
    background-image: url(../img/categories/photoshop.png);
}

.dark-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    transition: all ease-in-out 200ms;
}

/*dark overlay class will change upon hover*/
.index-category-box:hover .dark-overlay {
    opacity: 0;
}

.index-category-box h3 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-shadow: 0px 2px 4px #000;
    z-index: 100;
}