@font-face {
	font-family: "Roboto";
	src: url('assets/fonts/Roboto-Regular.ttf') format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url('assets/fonts/Roboto-Italic.ttf') format("truetype");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: "Roboto";
	src: url('assets/fonts/Roboto-Bold.ttf') format("truetype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url('assets/fonts/Roboto-BoldItalic.ttf') format("truetype");
	font-weight: bold;
	font-style: italic;
}

html,
body {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

body {
	font-family: Roboto, Arial, sans-serif;
	background-color: #f0f0f0;
}

* {
	box-sizing: border-box;
}

h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 100;
	margin: 4rem 0;
	padding: 1.5rem;
	background-color: #cacaca;
	letter-spacing: 2px;
}

h3 {
	font-size: 150%;
	letter-spacing: 3px;
}

button,
input[type="submit"],
input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

a {
	color: black;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	list-style: none;
}

ul,
li {
	margin: 0;
	padding: 0;
}

.anchor {
	scroll-margin-top: 100px;
}

.external-link {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border: 1px solid #cbc5c5;
	border-radius: 4px;
	background-color: #f0f0f0;
}
.external-link:hover {
	text-decoration: none;
	background-color: #dcdcdc;
}
.external-link img {
	width: 24px;
	height: 24px;
	margin-right: 1rem;
}

@media only screen and (max-width: 540px) {
	h2 {
		font-size: 1.5rem;
	}
}