h1 { font-size: 48px;}
h2 { font-size: 30px;}
h3 { font-size: 20px;}
h4 { font-size: 14px;}
h5 { font-size: 12px;}
h6 { font-size: 8px;}

p { font-size: 20px; line-height:100%}

A {
    text-decoration: none; /* Убирает подчеркивание для ссылок */
   } 

A:hover {
    text-decoration: underline;

A img {
	text-decoration: none;
	border: 0 none;
	}


/*TILT*/
.tilt {
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
 
.tilt:hover {
  -webkit-transform: rotate(-30deg);
     -moz-transform: rotate(-30deg);
       -o-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

