How can I adjust slider text size on mobile and remove the 'create account' link?

Hi all. I used to have the simple theme but recently switched to the Brooklyn theme. I think it looks fantastic! However, my issue is the slider on my mobile version. On the desktop, the slider looks fantastic. However, on the mobile version, the slider text is too big. Is there anyway to cut the text size on mobile? Only on the slider. The rest of the site looks great.

The website I am referring to is www.PennsylvaniaParks.org.

Also, anyone know how to remove the “create account” link on my site? I dont want people to create accounts on their own. I want to be the one to create them for them. Cant seem to find anything online on how to remove the create account button tough.

Thanks for you help in advance.

please add below code in bottom of assets/theme.scss.css file

@media only screen and (max-width:767px) {

.hero__slide .hero__title {

font-size: 1.3rem;

}

div#Hero-slideshow {

height: auto;

}

}

Thank you.

@Justin34 ,

Please add this CSSto your theme

@media (max-width:1024px) {
    .hero__slide .hero__title, .hero--adapt .hero__title{
        font-size: 2.76471em !important;
    }
}
@media (max-width:768px) {
    .hero__slide .hero__title, .hero--adapt .hero__title{
        font-size: 35px !important;
    }
}
a#customer_register_link {
    display: none;
}

Thanks!

@Justin34

@media screen and (max-width: 768px){
.hero__text-content {
    padding-left: revert !important;
    right: 10px !important;
}
}

Add this code in the theme.css or theme.scss