body {
    margin: 0; 
    overflow-x: hidden; 
}

html,
.centerSection {
    background-color: rgb(21, 21, 21);
}

.indexGrid {
    position: relative;
    z-index: 99;
    display: grid;
    grid-template-rows: 1fr;
}


.backgroundText {
    position: fixed;
    top: 200px;
    left: -30%;
    font-size: 50vw; 
    color: #f1f1f1; 
    z-index: 1; 
    font-weight: bold;
    text-align: left;
    pointer-events: none; 
    transform: rotate(90deg);
    overflow: hidden;
    font-weight:bold;
    line-height: 1;
}

.rowIndex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

.rowIndex img {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: auto;
    width: 25vh;
    cursor: pointer;
}

.rowIndex img:hover {
   width: 40vh;
}

.descTextIndex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 30px;
    border-radius: 8px;
    background-color: #ff4f00;
    color: #fff;
    cursor: default;
    user-select: none;
}

.rowIndex img:hover ~ .descTextIndex {
    width: 200px; /* Expand width on hover */
}

@media (max-width: 1500px) {
    .backgroundText {
        font-size: 60vw;
        line-height: .8;
        left: -50%;
        top: 0%;
    }    
}

@media (max-width: 767px) {

    .backgroundText {
        font-size: 90vw;
        left: -70%;
        top: 20%;
    }

    .rowIndex img:hover {
        width: 25vh;
    }

}



