@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;800&display=swap');

:root {
	--animation-time: 10s;
}

html,
body {
	width: 100%;
	height: 100%;

	margin: 0;
	padding: 0;

	background: #222b39;
	color: white;

	font-family: 'Raleway', sans-serif;

	scroll-behavior: smooth;
}

/* link */
a {
	color: white;
	text-decoration: none;
}

/* unvisited link */
a:link {
	color: white;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: white;
	text-decoration: none;
}

/* mouse over link */
a:hover {
	color: white;
	text-decoration: none;
}

/* selected link */
a:active {
	color: white;
	text-decoration: none;
}

header {
	width: 100%;
	height: 100%;

	margin: 0;
	padding: 0;

	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)), url('../images/background2.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;

	-webkit-box-shadow: inset 0px -23px 44px -14px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: inset 0px -23px 44px -14px rgba(0, 0, 0, 0.75);
	box-shadow: inset 0px -23px 44px -14px rgba(0, 0, 0, 0.75);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 5px;
	padding: 3px 10px;
	background-color: black;
	display: inline-block;
	animation: bounceInFull 1s ease-in-out;
}
header h1 {
	font-weight: 500;
	font-size: 4em;
}
header h3 {
	font-weight: 300;
	font-size: 3em;
}
header h5 {
	font-weight: 100;
	font-size: 2.5em;
}

@keyframes bounceInFull {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes bounceInFullIcon {
	0% {
		transform: scale(0.1), rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1), rotate(45deg);
		opacity: 1;
	}
}

@keyframes bounceInHalf {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.headerImageWrapper {
	width: 40%;
	height: 100%;

	margin: 0;
	padding: 0;

	float: left;
	position: absolute;
}

.headerImageWrapper img {
	width: auto;
	height: 70%;

	bottom: 0;
	right: 0;
	position: absolute;

	animation: bounceInHalf 0.5s ease-in-out;
}

.headerContentWrapper {
	width: 55%;
	height: 100%;

	margin: 0;
	padding: 0;

	float: right;
	position: relative;
}

.headerContent {
	position: absolute;

	top: 50%;
	transform: translate(0, -50%);
}

.socialBorder {
	border: 1px solid white;
	width: 50px;
	height: 50px;
	display: block;
	text-align: center;
	align-items: center;
	line-height: 50px;
	transform: rotate(45deg);
	margin-top: 40px;
	margin-left: 20px;
	margin-right: 20px;
	float: left;
	transition: 0.3s;
}

.socialWrapper {
	animation: bounceInFullIcon 1s ease-in-out;
}

.socialBorder:hover {
	background-color: #57f0fb3a;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.socialBorder i {
	transform: rotate(-45deg) translate(-10%, 7%);
	font-size: 1.2em;
	margin: 0;
	padding: 0;
}

.section01 {
	width: 100%;
	height: 250px;

	margin: 0;
	padding: 0;

	align-items: center;

	text-align: center;

	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)), url('../images/background2.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.section01Wrapper {
	width: 100%;
	height: 100%;

	background-color: rgba(30, 215, 96, 0.2);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.section01Content {
	width: 70%;
	height: 100%;

	margin: auto;
	padding: 20px 0;
}

.section01 h5 {
	font-weight: 100;
	font-size: 2.5em;
}

.section02 {
	width: 100%;
	height: 100%;

	margin: 0;
	padding: 0;

	align-items: center;

	text-align: center;

	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)), url('../images/background2.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.section02Content {
	width: 100%;
	height: 100%;

	backdrop-filter: blur(6px);
}

.section02 h1 {
	font-weight: 100;
	font-size: 4em;

	margin: 0;
	padding-top: 30px;
	margin-bottom: 20px;
}

.section02 h4 {
	font-weight: 100;
	font-size: 2em;

	margin: 0;
	margin-top: 30px;
}

.section02 .underline {
	display: block;

	width: 30px;
	height: 2px;

	background-color: white;

	margin: auto;
}

.section03 {
	width: 100%;
	height: 150px;
}

.skillBarWrapper {
	width: 100%;
	display: flex;
	align-items: center;
}

.skillBarBegin {
	width: 150px;
	height: 150px;

	background-color: red;
}

.skillBarBeginArrow {
	width: 106px;
	height: 106px;

	background-color: red;

	border-left: 1px solid white;
	border-bottom: 1px solid white;

	transform: rotate(45deg) translate(-50%, 50%);
}

.skillBarContent {
	width: 500px;
	height: 150px;
	background-color: blue;
}

.skillBarEnd {
	background-color: red;
}

footer {
	width: 100%;
	height: 80px;

	/* z-index: 20; */
	/* position: relative; */
}

.footerWrapper {
	width: 70%;
	height: 100%;

	margin: 0;
	padding: 20px;

	margin: auto;
}

.footerLeft {
	width: 60%;
	height: 100%;

	margin: 0;
	padding: 0;

	float: left;
}

footer h5 {
	font-weight: 100;
	font-size: 1.2em;
	margin: 0;
}

footer p {
	font-weight: 100;
	font-style: italic;
	margin: 0;
	margin-top: 8px;
	text-align: right;
	font-size: 1em;
}

footer .quote {
	display: inline-block;
	top: 50%;
	position: relative;
	transform: translateY(-50%);
}

.footerRight {
	width: 40%;

	margin: 0;
	padding: 0;

	float: right;
	text-align: right;

	top: 50%;
	position: relative;
	transform: translateY(-50%);

	font-weight: 100;
	font-size: 1.2em;
}

#logoWrapper {
	width: 100%;
	bottom: 0;
	overflow: hidden;
}

.animationIcon {
	font-size: 1.3em;
	z-index: 10;

	position: absolute;
	bottom: 0;

	animation-name: example;
	animation-duration: var(--animation-time);
	animation-iteration-count: infinite;
}

@keyframes example {
	from {
		bottom: 0;
		opacity: 100%;
	}
	to {
		bottom: 100px;
		opacity: 0%;
	}
}
