Responsive Headerimage

.inside-header {
/*	background-size: cover;	*/
	background-position: left top;
	background-repeat: no-repeat;
    /*height: 300px;*/                 
	/*min-height: 500px;*/

    /*background-attachment: fixed;        Parallax-Effekt  */
}

@media (max-width: 768px) {
    /* CSS in here for mobile only */
	.inside-header {
		background-image: url('https://youvo.detsnet.de/wp-content/uploads/2022/07/HeaderBackground.jpg');
		height: 250px;
	}
}
@media (min-width: 769px) and (max-width: 1024px) {
    /* CSS in here for tablet only */
	.inside-header{
		background-image: url('https://youvo.detsnet.de/wp-content/uploads/2022/07/HeaderBackground.jpg');
		height: 250px;
	}
}
@media (min-width: 1025px) {
    /* CSS in here for desktop only */
	.inside-header {
		background-image: url('https://youvo.detsnet.de/wp-content/uploads/2022/07/HeaderBackground.jpg');
		height: 300px;
	}
}