.site-description { width: 400% }
This looks nicer on desktop, but on mobile phone, the text extends out of the screen. This was expected but I don’t know how to make it both longer on the desktop than it originally is and responsive for smaller screens
]]>@media screen and (min-width: 768px) {
.site-description {
width: 400%;
}
}
The above code says, if the browser width is larger than 768px wide, then set the .site-description class to 400%. You can adjust the 768px value to your liking but that is usually a common breakpoint.
]]>