body { 
    background-color: #323232;
}

.index_page_container { 
    padding: 5px 10px 10px 10px; 
    display: flex; /* added this property */ 
    flex-wrap: wrap; /* added this property */ 
}
.index_timers_container {
    display: flex;
    flex-direction: row; /* default value, can be omitted */
    flex-wrap: wrap;
   
}

.family_events {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 550px;
    min-height: 550px;
}

/*.age-bubble {
    display: inline-block;
    padding: 5px 10px;
    background-color: White;
    color: black;
    border: 2px solid black;
    border-radius: 15px;
}*/

