body {
	margin: 0;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

p {
	margin: 0;
}

ul {
	padding-left: 0;
	margin: 0;
}

a {
	color: inherit;
}

input, button {
	outline: none;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

body {
	min-width: 1200px;
}

.container {
	min-width: 1200px;
}

.mobile-only {
	display: none;
}

.desktop-only {
	display: inherit;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	body {
		min-width: auto;
	}

	.container {
		min-width: auto;
	}

	.mobile-only {
		display: inherit;
	}

	.desktop-only {
		display: none !important;
	}

}
