/* -------------------------------------- basics */
#index, #about, #shrines, #credits, #buttons, #graphics, #resources, #friends {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    overflow: auto;
}

.tab-header1 {
    display: flex;
    gap: 11px;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 5px 20px 20px 5px;
    padding: 4px;
    background: linear-gradient(to bottom,  #f8faf6 0%,#e9f0da 50%,#dce5c7 51%,#f5f9ed 100%);
}

.tab-header2 {
    display: flex;
    gap: 11px;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 5px 20px 20px 5px;
    padding: 4px;
    background: linear-gradient(to bottom,  #fcfafa 0%,#f8e7e6 50%,#f6dddc 51%,#fdf4f3 100%);
}

.tab-header1::before {
    content: url(/graphics/icons/FL-daisy2.gif);
    animation: tilt5 0.5s infinite;
}

.tab-header2::before {
    content: url(/graphics/icons/FL-daisy2.gif);
    animation: tilt5 0.5s infinite;
}

.tab-ul {
    display: flex;
    width: -webkit-fill-available;
    margin: 0;
    padding-left: 12px;
    flex-direction: column;
    gap: 5px;
}

.tab-li {
    font-size: 13px;
    padding-left: 5px;
    letter-spacing: 1px;
}

.tab-li a {
    font-size: 12px;
    letter-spacing: 1px;
}

.tab-li::marker {
    content: url(/graphics/icons/FL-clover13.gif);
}
/* -------------------------------------- index */
.index-grid {
    display: grid;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    grid-template-areas: 
        "index1 index2"
        "index1 index2"
        "index1 index3"
        "index4 index3";
    gap: 10px;
}

.index-grid > div {
    border: 1px solid;
}

.index-text {
    font-size: 13px;
    letter-spacing: 0.2px;
    text-align: justify;
}

.img-divider {
    width: 550px;
    height: 15px;
}

/* -------------------------------------- index1 */
.index1 {
    display: flex;
    gap: 5px;
    grid-area: index1;
    height: -webkit-fill-available;
    width: 550px;
    background: url(/graphics/backgrounds/FP-bg8.gif);
    background-size: 20px;
    border-radius: 5px;
    padding: 5px;
    border-top-right-radius: 15px;
    flex-direction: column;
}

.index1-inner {
    display: flex;
    border: 1px solid;
    border-radius: 5px;
    border-top-right-radius: 15px;
    padding: 5px;
    gap: 5px;
    background: white;
    flex-direction: column;
}

.index1-para {
    display: flex;
    height: -webkit-fill-available;
    flex-direction: column;
    gap: 5px;
}

.featured-flex {
    display: flex;
    flex-direction: row;
    width: -webkit-fill-available;
    gap: 5px;
}

.featured-box {
    width: -webkit-fill-available;
    height: 200px;
    border-image-source: url(/graphics/borders/SP-1.png);
    border-image-slice: 5;
    border-image-width: 5px;
    border-image-repeat: round;
    border-style: solid;
    border-radius: 5px;
    background: #fdfff4;
}
/* -------------------------------------- index2 */
.index2 {
    grid-area: index2;
    width: 219px;
    height: 140px;
}
/* -------------------------------------- index3 */
.index3 {
    grid-area: index3;
    height: 527px;
}
/* -------------------------------------- index4 */
.index4 {
    grid-area: index4;
    height: 72px;
}