Hi Ashley-
I took a look at the website you sent privately, and it looks like there’s two main things causing this issue: the background image and the long call-to-action text that doesn’t have any spaces.
In order to fix this, navigate to Customize > Advanced > Custom JS & CSS, and paste the following code into your Custom Theme CSS section:
body.custom-background { background-position: center top !important; }
@media (max-width: 991px) {
body.custom-background {
background-size: cover;
max-height: 100vh;
}
.call-to-action h2 {
font-size: 10vw !important;
}
}
This will keep your background image centered, and start scaling down the font-size of your call-to-action text when the screen size won’t fit that text any more.