.content{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.top {
    /*background-color: cadetblue;*/
    margin-left: 10%;
    margin-right: 10%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: min(20px, 20%);
}

.t_left {
    /*background-color: chartreuse;*/
    display: flex;
    flex-direction: column;
}

.t_middle {
    /*background-color: red;*/
    min-width: 20px;
}

.t_right {
    /*background-color: aqua;*/
    display: flex;
    flex-direction: column;
}

.bottom {
    background-color: rgb(39, 45, 49);
    width: 100%;
    height: 130px;
    margin-top: auto;
}

.bottom_content{
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;

}

.bc_left{
    /*background-color: chartreuse;*/
    display: flex;
    flex-direction: column;
}

.bc_middle {
    /*background-color: red;*/
    min-width: 20px;
}

.bc_right {
    /*background-color: aqua;*/
    display: flex;
    flex-direction: row;
    font-size: 12px;
}

