@font-face {
	font-family: 'glimmer of light'; 
	src: url('/assets/fonts/glimmer of light.ttf') format('truetype');
}

@font-face {
	font-family: 'rough serif';
	src: url('/assets/fonts/rough serif.ttf') format('truetype');
}

* {
	box-sizing: border-box;
}

body {
	font-family: "rough serif";
}

h1, h2, h3, h4, h5, h6 {
	font-family: "glimmer of light";
	color: indianred;
	line-height: 1.2;
}

li {
	margin-top: 5px;
}

/* HEADER */
/* Add a black background color to the top navigation */
header {
	background-color: #333;
	overflow: hidden;
	position: sticky;
	top: 0;
}

header img {
	float: left;
	padding: 2px;
	height: 40px;
}

/* Style the links inside the navigation bar */
header a {
	float: left;
	color: #f2f2f2;
	text-align: center;
	padding: 12px 14px;
	text-decoration: none;
	font-size: 17px;
}

/* Change the color of links on hover */
header a:hover {
	background-color: #ddd;
	color: black;
}

/* Add a color to the active/current link */
header a.active {
	background-color: indianred;
	color: white;
}

/* FORM */

input[type=text], input[type=tel], input[type=email], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: vertical;
}

label {
	padding: 12px 12px 12px 0;
	display: inline-block;
}

input[type=submit] {
	color: white;
	background-color: indianred;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	float: right;
}

input[type=submit]:hover {
	background-color: #ddd;
	color: black;
	font-weight: bold;
}

.container {
	max-width: 600px;
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

.col-30 {
	float: left;
	width: 30%;
	margin-top: 6px;
}

.col-70 {
	float: left;
	width: 70%;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row::after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.col-30, .col-70, input[type=submit] {
		width: 100%;
		margin-top: 0;
	}
}