
body {
    background-color: rgb(20, 20, 20);
}
.container-fluid {
    height: 500px;
    background-color: rgba(0, 0, 0, 0.915);
    display: flex;
    
}

.card {
    width: 100%;

    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 150px;

    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
   
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.card-clicked {
    background-color: #d00000 !important;
}

.card-clicked > .text{
    color: #ffffff !important;
}

.card-clicked > .icon{
    color: #ffffff !important;
    filter: invert(100%);
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0px;
}

.fullimage{
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    margin-left:auto;
    margin-right:auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #a5a5a5;
    margin-top: 10px;
    max-width: 100%;
    max-height: 480px;
    height: 462px;
}

.text {
    color: #d00000; /* Red color for text */
    font-size: 16px;
    font-weight: bold;
}

.text-custom-judul {
    color: #d43838; /* Red color for text */
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.text-custom-body {
    color: #d9cdcd; /* Red color for text */
    font-size: 1.4rem;
    text-align: justify;
    text-justify: inter-word;
}

@media only screen and (max-width: 576px) {
    /* put your CSS elements here */
    .card {
        width: 100%;
    
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 80px;
    
    }

    .text-custom-body {
        color: #d9cdcd; /* Red color for text */
        font-size: 1.2rem;
        text-align: justify;
        text-justify: inter-word;
    }
}