body {
    font-family: 'Roboto Mono';
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f8f8;
    padding-top: 4vh;
}

.content-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #FFFFFF;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(5px);
    }

    100% {
        opacity: 0.5;
        transform: translateY(0);
    }
}

.scroll-indicator {
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
    display: none;
    transition: opacity 0.3s, transform 0.3s;
}

#scrollToTop:hover {
    transform: scale(1.2);
}

.image-container {
    position: relative;
    display: inline-block;
}

.caption {
    position: absolute;
    bottom: 5px;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px;
    font-size: 12px;
    text-align: left;
}

.accordion-body {
    color: rgb(99, 99, 99);
}