Hello, alors pour le défilement vers la droite tu as deux solutions:
-la méthode propre, tu repère les div qui provoquent de la marge à droite, et tu places un border-box
* {
box-sizing: border-box;
}
- la méthode rapide, tu met ta dinv body en width 100% et un overflow-x a hidden:
body {
width: 100%;
overflow-x: hidden;
}