/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

/* text */

h1 {
	font-family: Alagard;
}

p {
	font-family: Alagard; 
	color: #ec8f5f;
	font-size: 2em;
	margin: 10px;
}

a {
	font-family: Alagard; 
	color: #8a94b5;
	margin: auto;
	font-size: 2em;
	text-decoration: none;
	margin: 10px;
}

a:hover {
	font-family: Alagard; 
	color: white;
	font-size: 2em;
	text-decoration: none;
}

a:visited {
	font-family: Alagard; 
	color: #8a94b5;
	font-size: 2em;
	text-decoration: none;
}

a:visited:hover; {
	font-family: Alagard; 
	color: white;
	font-size: 2em;
	text-decoration: none;
}

#titletext {
	animation-name: eravulgarisgradient;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	font-size: 5em;
	margin: 10px;
}

/* div */

#titlediv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	gap: 10px;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	text-align: center;
}

/* img */



/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100%;
	margin: 0;
	padding: 0;
	background-image: url('../media/impressionsunrise.jpg'); 
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

/* animations */

@keyframes eravulgarisgradient {
	0% {color: #f19367;}
	50% {color: #8a94b5;}
	100% {color: #f19367;}
}