this is because you have set the width to be narrower:
.site-content {
width: 61%;
}
you might need to wrap that style into a @media query;
example:
@media screen and (min-width: 600px) {
.site-content {
width: 61%;
}
}
this is because you have set the width to be narrower:
.site-content {
width: 61%;
}
you might need to wrap that style into a @media query;
example:
@media screen and (min-width: 600px) {
.site-content {
width: 61%;
}
}