/**
 * Moduuli: 02-typography.css
 * Description: Otsikot, linkit ja tekstin yleiset tyylit.
 * Version: 1.0
 */

h1, .site-title {
	font-weight: 900;
	color: #4c4c4c;
}

h2, h3, h4, h5, h6 {
	font-weight: 700;
}

a {
	text-decoration: none;
	color: #024f91;
}

.entry-content a {
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px dotted rgba(2, 79, 145, 0.5);
	transition: border-bottom 0.2s ease-in-out;
}
.entry-content a:hover {
	border-bottom: 2px solid rgba(2, 79, 145, 1);
}
