:root {
	--lighten-opacity: 0.75;
	--text-color: rgb(51, 51, 51);
	--lightGrey: #707070;
	--blueOne: #00adf0;
	--blueTwo: #00adf0;
	--greenOne: #00a84f;
	--greenTwo: #00a84f;
	--orangeOne: #f7941d;
	--orangeTwo: #f7941d;
	--purpleOne: #92278f;
	--purpleTwo: #92278f;
	--redOne: #fe0000;
	--redTwo: #fe0000;
	--yellowOne: #ffde01;
	--yellowTwo: #ffde01;
}

/* Animations */
@keyframes animatedIntrotext {
	0% {
		opacity: 0;
		transform: scale(0.9);
		transform: translate(-10px, 0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		transform: translate(0, 0);
	}
}

@keyframes animatedPhoto {
	0% {
		opacity: 0;
		transform: scale(0.9);
		transform: translate(20px, -20px);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		transform: translate(0, 0);
	}
}

@keyframes animatedBackground {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: -10000px 0;
	}
	100% {
		background-position: 0 0;
	}
}

/* Globals css */
body {
	display: flex;
	flex-direction: column;
	color: var(--text-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
}
h1 {
	font-size: 40px;
}
p,
a {
	font-family: 'Raleway', sans-serif;
	color: var(--text-color);
}
a:hover {
	color: var(--yellowOne);
	text-decoration: none;
}

/* Bootstrap overrides */
nav {
	margin-bottom: 0px;
}
.bg-light {
	background-color: #ffffff !important;
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 0.5);
	padding: 10px 0 10px 40px;
}

.jumbotron {
	background-color: white;
	position: relative;
	display: flex;
	align-items: center;
	background-position: 0px 0px;

	background-image: url('../img/background.png');

	animation: animatedBackground 800s linear infinite;
	-moz-animation: animatedBackground 800s linear infinite;
	-webkit-animation: animatedBackground 800s linear infinite;
	-ms-animation: animatedBackground 800s linear infinite;
	-o-animation: animatedBackground 800s linear infinite;
}
.jumbotron-height-lg {
	height: 70vh;
}
.jumbotron-height-sm {
	height: 25vh;
}
.bg-contain {
	background-size: contain;
}
nav ul {
	font-size: 16px;
}
ul {
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
}

/* Cool lines */
hr {
	border-top: none;
}
hr.thick-yellow {
	border-top: 38px solid var(--yellowOne);
	margin: 0;
}
hr.thin-gradient {
	background: linear-gradient(
		90deg,
		var(--yellowOne) 0%,
		var(--orangeOne) 20%,
		var(--redOne) 40%,
		var(--purpleOne) 60%,
		var(--greenOne) 80%,
		var(--blueTwo) 100%
	);
	height: 8px;
	margin: 0;
	opacity: var(--lighten-opacity);
}
hr.thick-gradient {
	background: linear-gradient(
		90deg,
		var(--yellowOne) 0%,
		var(--orangeOne) 20%,
		var(--redOne) 40%,
		var(--purpleOne) 60%,
		var(--greenOne) 80%,
		var(--blueTwo) 100%
	);
	height: 13px;
	margin: 0;
	opacity: var(--lighten-opacity);
}
hr.striped {
	background: var(--lightGrey);
	border: 2px dashed #707070;
	opacity: 0.1;
}

/* Color modifiers */
.yellow {
	color: var(--yellowOne);
}
.orange {
	color: var(--orangeOne);
}
.red {
	color: var(--redOne);
}
.purple {
	color: var(--purpleOne);
}
.green {
	color: var(--greenOne);
}
.blue {
	color: var(--blueOne);
}

/* Text modifiers */
.raleway {
	font-family: 'Raleway', sans-serif;
}
.montserrat {
	font-family: 'Montserrat', sans-serif;
}
.thicktext {
	font-weight: 600;
}

/* Utilities */
.square {
	height: 10px;
	width: 10px;
	margin: 20px 0 0 5px;
	position: relative;
	background-color: var(--yellowOne);
}

.p-25 {
	line-height: 0.2;
	font-size: 25px;
}
.text-shadow {
	text-shadow: 1px 0px 0px #00000055;
}
.no-margin {
	margin: 0;
}

/* Buttons */
.buttonPrimary {
	box-shadow: 1px 1px 6px 0px #80808045;
	background-color: var(--yellowOne);
	border-radius: 0px;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 40px;
	text-decoration: none;
	text-shadow: 2px 0px 3px #0000008f;
	transition: all 0.5s;
}

.buttonPrimary:hover {
	transform: scale(1.05);
	text-decoration: none;
	color: var(--text-color);
}
.buttonPrimary:active {
	position: relative;
	top: 1px;
}

/* Custom footer */
footer {
	flex-shrink: 0;
}
footer p {
	line-height: 0.2;
}
.footer-content {
	margin: 10px 0 10px 0;
}

/* Home, greeting */
.greeting-text {
	animation: animatedIntrotext 2s ease-in-out;
	-moz-animation: animatedIntrotext 2s ease-in-out;
	-webkit-animation: animatedIntrotext 2s ease-in-out;
	-ms-animation: animatedIntrotext 2s ease-in-out;
	-o-animation: animatedIntrotext 2s ease-in-out;
}
.profielfoto {
	display: block;
	animation: animatedPhoto 2s ease-in-out;
	-moz-animation: animatedPhoto 2s ease-in-out;
	-webkit-animation: animatedPhoto 2s ease-in-out;
	-ms-animation: animatedPhoto 2s ease-in-out;
	-o-animation: animatedPhoto 2s ease-in-out;
}
.profielfoto img {
	width: 160px;
	height: auto;
}

/* Home, about me section */
.about-me {
	margin: 50px 0 80px 0;
}
.information {
	font-size: 20px;
}
.contact-passive {
	font-size: 20px;
	font-weight: 400;
	border-bottom: 4px dashed var(--yellowOne);
	transition: all 0.5s;
}
