/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
}

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */

html {
	font-size: 2.2vw;
	font-family: 'Roboto';
	line-height: 1.3;
	color: #222;
	background: #f7f7f7 url(../images/background.jpg) center/cover;
}

ol,
ul {
	list-style: none;
	margin-bottom: 1em;
}

h1,
h2 {
	color: #000;
}

h1 {
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: .5rem;
}

h2 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #333;
	text-decoration: none;
	transition: opacity .3s;
}

a:hover {
	opacity: .7;
}

/* ------------------------------------------------------------ *\
	Home
\* ------------------------------------------------------------ */

.content {
	width: 20rem;
	max-width: 100%;
	margin: 1rem auto;
	padding: 0 15px;
}

.dashicons,
.dashicons-before:before {
	font-size: inherit;
	line-height: inherit;
	width: auto;
	height: auto;
	margin-right: .25rem;
	transition: none;
}

/* ------------------------------------------------------------ *\
	Links
\* ------------------------------------------------------------ */

.links a {
	display: flex;
	align-items: center;
}

.link-wordpress .dashicons {
	color: #0073aa;
}

.link-craft img {
	width: .92em;
	margin-right: .28rem;
	margin-left: .03rem;
}

.link-email .dashicons {
	color: #009930;
	margin-left: -.035rem;
	padding-right: .035rem;
}

/* ------------------------------------------------------------ *\
	Responsive
\* ------------------------------------------------------------ */

@media(max-width: 768px) {
	html {
		font-size: 7vw;
	}

	.content {
		width: 100%;
	}
}