:root {
	--default-text-color: #fff!important;
	--contrast-color: #f4e071!important;
	--contrast-color-over: #5f98bb!important;
}

html, body {
	background: linear-gradient(to left, #292826, #393f4c);
	color: var(--default-text-color);
	font-family: open-sans,sans-serif;
	font-size: 100%;
	font-style: normal;
	margin: 0px;
	min-height: 100%;
	padding: 0px;
	width: 100%;
}

a,
a:visited,
a:hover,
a:active {
	color: #0066cc;
	text-decoration: none;
}

p {
	font-weight: normal;
	margin: 0px;
}

h1, h2, h3, h4, h5 {
	font-weight: bold!important;
	margin: 0px!important;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 2em;
}

h4 {
	font-size: 1.875em;
}

h5 {
	font-size: 1.5em;
}

h6, ul {
	font-size: 1.25em;
	font-weight: normal!important;
	margin: 0px!important;
}

.menu {
	background-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	position:fixed;
	top: 0;
	width: 100%;
	z-index: 9;
	text-shadow: 1px 1px 5px black;
}

.menu a {
	color: var(--default-text-color);
}

.menu-content {
	font-size: 14px;
	padding: 20px 0 35px;
}

.menu-content a:hover {
	text-decoration: underline;
}

.menu-hidden {
	text-align: right;
	float: right;
}

.site-name a {
	float: left;
	text-decoration: none!important;
	text-transform: uppercase;
}

.page {
	margin-top: 800px;
	width: 100%;
	background: linear-gradient(to left, #292826, #393f4c);
	position: absolute;
}

.wrapper {
	width: 100%;
	margin: 0 auto;
}

.content-wrapper {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}

.button {
	border: none;
	padding: 12px 30px;
	margin: 10px;
	cursor: pointer;
	border-radius: 25px;
	background-color: var(--contrast-color);
	color: #124f6b;
	font-weight: bold;
}
.button:hover {
	animation: anim-button 0.5s;
	background-color: var(--contrast-color-over);
	color: #fff;
}
@keyframes anim-button {
  from {
    background-color: var(--contrast-color);
	color: #124f6b;
  }
  to {
    background-color: var(--contrast-color-over);
	color: #fff;
  }
}

.tag {
	border: none;
	padding: 12px 30px;
	margin: 5px;
	font-size: 12px;
	border-radius: 20px;
	background-color: #292826;
	color: #fff;
	display: inline-block;
	cursor: default;
	user-select: none;
	font-weight: bold;
}
.tag:hover {
	animation: anim-tag 0.5s;
	background-color: #fff;
	color: #000;
}
@keyframes anim-tag {
  from {
    background-color: #292826;
	color: #fff;
  }
  to {
    background-color: #fff;
	color: #000;
  }
}

.sticker {
	margin-top: 30vh;
	position: absolute;
	background-color: transparent;
	text-align: left;
	padding: 20px;
	z-index: 8;
}

.sticker-skills {
}

.container {
	margin: 0 auto;
	display: table;
	clear: both;
}

.flex1 {
	padding: 20px 20px 20px 0px;
}

.flex2 {
	float: left;
	width: 45%;
	padding: 5px;
}

.flex3 {
	float: left;
	width: 30%;
	margin: 1%;
	padding-bottom: 20px;
}

.page-header {
	align-items: center;
	display: flex;
	height:800px;
	justify-content: center;
	position: fixed;
	width: 100%;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer {
	width: 75%;
	margin-left: auto;
    margin-right: auto;
	padding-top: 5vh;
	padding-bottom: 5vh;
	text-align: left;
	color: #fff;
}

.footer p, .footer a, .footer a:visited, .footer a:hover, .footer a:active {
	color: #fff;
}

.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	transition: 1s opacity;
}