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

a:hover{ 
  text-decoration: none; 
}
img{
 border: 0;
}


p {
  margin:0; padding:0;
}

