/*
Theme Name: MRC Links v1
Author: Mike Chalmers
Author URI: https://mikechalmers.co.uk/
Description: Links page for mobile for Michael Chalmers ala linktree et al.
*/
@import url("https://fonts.googleapis.com/css2?family=Work+Sans&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	font-family: "Work Sans", sans-serif;
	font-size: 20px;
	line-height: 20px;
}
body {
	background-color: #fafafa;
}
.container {
	padding: 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 80px;
	align-items: center;
	min-height: 90vh;
}
.container > * {
	width: 100%;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
header {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.title {
	width: 100%;
	max-width: 400px;
}
.subtitle {
	text-align: center;
}
.link {
	margin-bottom: 20px;
	padding: 20px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	background-color: #0a0a0a;
	color: #fafafa;
	border: 2px solid #0a0a0a;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
	position: relative;
}
.link-image {
	position: absolute;
	content: "";
	left: 6px;
	top: 6px;
	height: 48px;
	width: 48px;
	background-color: rgba(120, 120, 120, 0.1);
}
.link-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.link:hover {
	background-color: #fafafa;
	color: black;
}
.link:last-of-type {
	margin-bottom: 0;
}

/* social icons */

/* .fa {
	padding: 15px;
	font-size: 30px;
	text-align: center;
	text-decoration: none;
	margin: 5px 2px;
	border-radius: 50%;
	transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
}
.fa:hover {
	opacity: 0.7;
}
.fa-instagram {
	background: #125688;
	color: white;
} */
