/* ________________________________________CSS Font________________________________________ */
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap')

/* ________________________________________CSS Struktura stranky________________________________________ */
#body   	{
		background-color: white;
		margin: 0px;
		text-align: center; /*vycentrovanie pre IE*/
		}

#page	{
		background-color: #ffffff;
		margin: 0 auto;
		}

#header 	{
		position: relative;
		background: #ffffff;
		width: 600px;
		height: 150px;
		}

#main 	{
		position: relative;
		background: #ffffff;
		background-image: url('images/background_bearing.png');
		background-repeat: no-repeat;
		background-position-x: 90%; 
		background-position-y: 50%; 
		background-size: 300px 300px;
		width: 700px;
		}
#footer 	{
		position: fixed;
		background: #000000;
		width: 100%;
		height: 90px;
		bottom: 0px;
		left: 0px;
		}
/* CSS odstavce */
p.kontakt		{
		text-align: center;
		font-size: 12pt;
		margin-top: 0px;
		margin-bottom: 3px;
		}
/* CSS odkazy */
a.link	{
		text-decoration: none;
		display:block;
		font-size: 10pt;
		font-weight: bold;
		color: #4DB858;
		}
a.link:hover	{
		text-decoration: none;
		font-weight: bold;
		color: red;
		}
a.link:visited{
		text-decoration: none;
		font-weight: normal;
		}
/* CSS tabulky */