/* text.css */
/*slouží pro definici stylů textu a html tagů jako např. <h1>,<p>,<a> */
*{
  font-size: 12px;
  font-family: Arial;  
}
a{ 
  color: #245177;
  text-decoration: none;  
}

a:hover{ 
  color: #2384c8;  
}
img{
 border: 0;
}
