@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

#renderContent {
    background-color: #e4dccd;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.index-left {
    flex: 1;
    min-height: 50%;
    position: relative;
    overflow: hidden;
}

.index-left canvas {
    display: block;
}

.index-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 50%;
    padding: 5vw 5vw 5vw 3vw;
}

.index-welcome {
    font-family: "Chakra Petch", sans-serif;
    font-size: 120%;
    font-weight: 400;
    color: #4a7c59;
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
}

.index-title {
    font-family: "Chakra Petch", sans-serif;
    font-size: 350%;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 0 28px 0;
}

.index-divider {
    border: none;
    border-top: 2px solid #1a3d2a;
    width: 60px;
    margin: 0 0 28px 0;
}

.index-desc {
    font-family: "Chakra Petch", sans-serif;
    font-size: 108%;
    color: #444;
    line-height: 1.85;
    max-width: 480px;
    text-align: justify;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    #renderContent {
        flex-direction: column;
    }

    .index-left {
        flex: none;
        min-height: 45vh;
        width: 100%;
    }

    .index-right {
        flex: none;
        width: 100%;
        padding: 6vw 8vw 6vw 8vw;
    }

    .index-title {
        font-size: 260%;
    }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
    .index-left {
        min-height: 38vh;
    }

    .index-right {
        padding: 8vw 6vw;
    }

    .index-title {
        font-size: 195%;
    }

    .index-welcome {
        font-size: 100%;
    }

    .index-desc {
        font-size: 93%;
        line-height: 1.7;
    }
}
