main{
    width: 60%;
    margin: 0 auto;
    padding-bottom:16px;
}


header figure{
    padding: 16px 0;
}
header figure > img{
    width: 300px;
}

.content_card{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 32px;
}
.content_card > div{
    box-shadow: 0px 8px 24px 4px rgba(0, 0, 0, 0.10);
    border-radius: 24px;
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}


article{
    display: grid;
    grid-template-columns: 60% 40%;
}

article section{
    padding-top: 16px;
}

article section:nth-child(1) .contentTitle{
    width: 442px;
} 



article section:nth-child(2) figure{
text-align: center;
}
article section:nth-child(2) figure > img{
    width: 250px;

}
.accordion-item{
    border-radius: 24px!important;
    margin-bottom: 8px;
}

.accordion-button{
    border: none!important;
    border-radius: 24px!important;
}

.accordion-button:not(.collapsed){
    background: var(--accentColor);
    color: #FFFFFF;
}



#loadingMessage {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-align: center;
    color: white;
    font-size: 24px;
    padding-top: 20%;
}