/*
 Theme Name:   OceanWP Child
 Description:  Child Theme des high-performance WP-Theme OceanWP
 Author:       Philipp Limbeck
 Author URI:   https://insyde.at/
 Template:     oceanwp
 Version:      1.0
 Text Domain:  oceanwp-child
*/

/* overwrite general settings of oceanwp for focus of links (black border) */
#main a:focus,
#site-header a:focus,
#footer a:focus{
	outline: 0px !important;
}

html.html{
	/* font-size: clamp(16px; 1vw; 20px); */
	font-size: 24px;
}

html body{
	font-size: 1rem;
	font-family: 'Univers LT Std 55 Roman';
}

#main h1,
#main h2{
	font-family: 'Univers LT Std 93 Extra Black Extended';
}

#main h3{
	font-family: 'Univers LT Std 55 Roman';
}

#main h4{
	font-family: 'Univers LT Std 65 Bold';
}

html body,
#main h1,
#main h2,
#main h3,
#main h4{
	color: #000;
}

#main h1,
#main h2{
	/* MIN: 32px
	 * MAX: 96px
	 * IDEAL: 4vw + 16px
	 * bei 1366px Bildschirm = 1vw = 13.66px --> 13.66*4 + 16px = 70.64px 
	 * bei 767px Viewport = 1vw = 7.67px --> 7.67*4 + 16px = 46.68px
	 * bei 390px Viewport (z.B. iPhone) = 1vw = 3.9px --> 3.9*4 + 16px = 31.76px --> MIN REGEL GREIFT */
	font-size: clamp(2rem, 3vw + 1rem, 4rem);
}

#main h3{
	font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
}

#main h4{
	font-size: clamp(1.2rem, 1vw + 1rem, 2.5rem);
}