.accordions {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50vh;
}

.accordion {
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    transition: flex 0.3s ease;
    cursor: pointer;
    /* background-color: rgb(50, 50, 50); */
}

.accordion:hover {
    flex: 3;
}

.accordion .accordionHeader {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--menu-bg-verydark);
    margin: 0 auto;
    z-index: 1;
    text-align: center;
}

.accordion .accordionCont {
    position: relative;
    height: calc(100% - 50px);
    text-align: center;
    top: -25px;
    line-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accordion:nth-child(odd) .accordionCont {
  background-color: rgb(168, 168, 168);
  color: var(--background-color);
}
.accordion:nth-child(even) .accordionCont {
    background-color: rgb(25, 25, 25);
    color: rgb(168, 168, 168);
}



.accordion .accordionCont h3 {
    font-size: 1.5em;
    text-align: center;
}

.accordion .accordionCont p {
    font-size: 1.0em;    
}
.accordion span {
    font-size: 24px;
    line-height: 50px;
    color: aliceblue;
    text-align: center;
}
