So I have some problem, if browser is full screen everything display correct, and when I change the size of browser my #table112 does not change it font-size, but it should change it according to logic. So where did I make mistake
#table112 {
display: flex;
font-size: 14px;
align-items: center;
justify-content: flex-start;
padding: 1rem;
}
@media screen and (min-width: 600px) {
#table112 {
font-size: 12px;
}
}
@media screen and (max-width: 900px) {
#table112 {
font-size: 12px;
}
}