﻿body{
    margin: 1rem;
}  

.flex-container_horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-container_horizontal_spacearound {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 35px;
}

.flex-child_firstItem {
    order: 1;
    flex: 1;
}
.flex-child_secondItem {
    order: 2;
    flex: 1;
}

.flex-container_horizontal_Center {
    display: flex;
    flex-direction: row;
}

.flex-container_horizontal_Center div{
    text-align: center
}

.zoomAjustment {
    zoom: 75%;
}  