https://developer.mozilla.org/ru/docs/Glossary/Viewport
Добавь Viewport. Затем проверяй страницу на всех разрешениях. После пропиши медиа. Измени стиль отображения ломающихся элементов на нужном разрешении.
/*Media*/
/* Large desktops and laptops */
media (min-width: 1200px) {
}
/* Portrait tablets and medium desktops */
media (min-width: 992px) and (max-width: 1199px) {
}
/* Portrait tablets and small desktops */
media (min-width: 768px) and (max-width: 991px) {
}
/* Landscape phones and portrait tablets */
media (max-width: 767px) {
}
/* Landscape phones and smaller */
media (max-width: 480px) {
}