You needd to use media query: check this link to understand it
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Try this code:
.banner {
position: relative;
}
.banner img {
display: inline-block;
width: 100%;
}
.banner-text {
position: absolute;
width: 100%;
top: 20%;
text-align: center;
color: white;
font-weight: bold;
letter-spacing: 10px;
font-size: 60px;
}
@media only screen and (max-width: 600px) {
.banner-text {
font-size: 40px;
}
}
@media only screen and (max-width: 400px) {
.banner-text {
font-size: 20px;
}
}
<div class="banner">
<img src="images/banner.jpg" width="100%;">
<div class="banner-text">
<p>HOŞGELDİNİZ!</p>
</div>
</div>