/*
Theme Name: siriusmedia
Theme URI: 
Author: Christian Unverricht
Author URI: 
Description: 
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: siriusmedia
Tags: 
*/

* {
	box-sizing: border-box;
}
html {
	/* more flexible font sizing */
	font-size: clamp(0.95rem, 1vw, 1.1rem);
}
html,
body {
	scroll-behavior: smooth;
}
a {
	transition: color 0.3s ease-in-out;
}
/* cool text decoration for links */
p a {
	text-decoration: none;
	background-image: linear-gradient(transparent 0%, transparent calc(100% - 1px), currentColor calc(100% - 1px), currentColor 100%);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease-in-out;
}
p a:hover {
	background-size: 100% 100%;
}
figure > img {
	display: block;
}
img {
	max-width: 100%;
}