.empty{
    height: min(128px,8vw);
}
.dark{
    background-color:var(--dark-color-translucent);
    color:var(--light-color);
}
.light{
    background-color:var(--light-color-translucent);
    color:var(--dark-color);
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex-two{
    flex: 2;
}
.flex-three{
    flex:3;
}
.centered-children{
    display: flex;
    justify-content: center;
    align-items: center;
}
.centered-text{
    text-align: center;
}




  
  

