* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

li {
    list-style: none;
}

.flex_row {
    display: flex;
    justify-content: space-between;
    justify-items: center;
}

.flex_rows {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    flex-wrap: wrap;
}

.flex_row_left {
    display: flex;
    justify-content: flex-start;
    justify-items: center;
}

.body {
    width: 100%;
}