:root {
  --font-family: Bushcraft,Arial,sans-serif;
  --foreground-rgb: 255, 255, 255;
  --hover-rgb: 237, 102, 99;
  --accent-colour: #FFFFFF;
  --icon-filter: invert(100%);
  --icon-filter-hover: invert(60%) sepia(53%) saturate(3011%) hue-rotate(321deg) brightness(95%) contrast(95%)
}

html {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family);
  color: rgb(var(--foreground-rgb));
	margin: 0;
}

.full-page-gradient {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #425746, #12211C);
}

.panel {
	padding-top: 10rem;
  text-align: center;
}

.text {
  font-size: 2rem;
}

.name {
	font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
}

.icons {
  margin-top: 1rem;
  padding: 1.5rem;
  line-height: 48px;
}

.social-icon {
  display: inline-block;
  width: auto;
  height: 32px;
  filter: var(--icon-filter);
  box-sizing: border-box;
  margin: auto 0.7rem;
}

.social-icon:hover {
	filter: var(--icon-filter-hover);
}


a:link,
a:active,
a:visited {
  color: var(--accent-colour);
  text-decoration: none;
}
a:hover {
	color: var(--hover-rgb);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@font-face {
  font-family: Bushcraft;
  font-style:normal;
  font-weight:200;
  src: url(../fonts/bushcraft.woff2) format("woff2"), url(../fonts/bushcraft.woff) format("woff"), url(../fonts/bushcraft.ttf) format("truetype");
}
