main{
    width: 100%;
    height: 100vh;
    background-color: #1A253A;

    background-image: url(../img/person.png), url(../img/Sand.jpg);
    background-size: 60vh,cover;
    background-repeat: no-repeat;
    background-position: bottom left calc(50% + 80px), center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
 background-position: bottom left calc(50% + 80px), center;
}
main .main-intro h1{
    font-size: 96px;    
    line-height: 106px;
}
main  p{
    font-size: 18px;    
    line-height: 30px;
}
main  a{
    font-size: 18px;    
    display: block;
    background-color: var(--site-color-01);
    padding: 10px 20px;
    width: fit-content;
    margin-top: 30px;
}
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 {

    padding-bottom: 8vh;
}
main .main-quotes {

    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: #f3f7c4;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.index-category-box:nth-child(21){
    background-color: url(../img/categories/programming.png);
}
index-category-box:nth-child(3){
    background-color: url(../img/categories/filming.png);
}
index-category-box:nth-child(4){
    background-color: url(../img/categories/editing.png);
}
index-category-box:nth-child(5){
    background-color: url(../img/categories/photoshop.png);
}
.dark-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1A253A;
    opacity: 0.5;
}
.index-category-box:hover .dark-overlay{
opacity: 0;
transition: all ease-in-out 200ms;
}
.index-category-box h3{
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-shadow: -2px 2px 4px #000;
    z-index: 100;
}