* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	user-select: none;
}

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

img {
	pointer-events: none;
}

input {
	outline: none;
	border: none;
}

button {
	outline: none !important;
	border: none;
	cursor: pointer;
}

.website {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	min-height: 100vh;
	z-index: 1;
	overflow: hidden;
}

.website .background-img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.website .container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 53.3333333333vw;
}

.website .container .profile-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 10vw;
}

.website .container .profile-box span,
.website .container .socials-box .header span {
	font-family: BebasNeue;
	font-size: 2.5vw;
	color: #fff;
}

.website .container .profile-box span {
	animation: shadow 1.25s ease-in-out infinite;
}

.website .container .profile-box .img-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.8333333333vw;
	height: 5.8333333333vw;
	margin-top: 0.4166666666vw;
}

.website .container .profile-box .img-box img {
	width: 100%;
	height: 100%;
	animation: scale 1.25s ease-in-out infinite;
	transition: all 0.35s ease;
}

.website .container .socials-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 6.6666666666vw;
}

.website .container .socials-box .header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.website .container .socials-box .header .horizontal-line {
	width: 13.4895833333vw;
	height: 0.0520833333vw;
	background: #fff;
}

.website .container .socials-box .row {
	display: flex;
	align-items: center;
}

.website .container .socials-box .row .social-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.3333333333vw;
	height: 3.3333333333vw;
	margin-left: 0.4166666666vw;
	margin-top: 0.2083333333vw;
	color: #8a9bff;
}

.website .container .socials-box .row .social-container:first-child {
	margin-left: 0;
}

.website .container .socials-box .row .social-container img {
	width: 2.5vw;
	height: 2.5vw;
	transition: all 0.25s ease;
}

.website .container .socials-box .row .social-container:nth-child(1):hover > img {
	filter: drop-shadow(0 0.625vw 0.8333333333vw rgba(138, 155, 255, 0.72));
	transform: scale(1.1);
}

.website .container .socials-box .row .social-container:nth-child(2):hover > img {
	filter: drop-shadow(0 0.625vw 0.8333333333vw rgba(255, 255, 255, 0.72));
	transform: scale(1.1);
}

.website .container .socials-box .row .social-container:nth-child(3):hover > img {
	filter: drop-shadow(0 0.625vw 0.8333333333vw rgba(255, 187, 2, 0.72));
	transform: scale(1.1);
}

.website .container .socials-box .row .social-container:nth-child(4):hover > img {
	filter: drop-shadow(0 0.625vw 0.8333333333vw rgba(145, 70, 255, 0.72));
	transform: scale(1.1);
}

.website .container .my-projects {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 1.5625vw;
	width: 100%;
}

.website .container .my-projects .project-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc(33.33% - 1.25vw);
	height: 9.375vw;
	border-radius: 0.2083333333vw;
	transform: skewX(-12deg);
	border: 0.0520833333vw solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(349deg, rgba(7, 119, 251, 0.08) 7.73%, rgba(0, 0, 0, 0) 92.44%);
	box-shadow: 0 0 1.875vw rgba(0, 0, 0, 0.32) inset;
	transition: all 0.25s ease;
}

.website .container .my-projects .project-box:first-child {
	margin-left: 0;
}

.website .container .my-projects .project-box img {
	width: 4.6875vw;
	height: 4.6875vw;
	transform: skewX(12deg);
}

.website .container .my-projects .project-box span {
	font-family: Audiowide;
	font-size: 0.8333333333vw;
	color: #fff;
	text-shadow: 0 0 0.4166666666vw rgba(0, 0, 0, 0.24);
	transform: skewX(12deg);
}

.website .container .my-projects .project-box:hover {
	filter: drop-shadow(0 0 0.8333333333vw rgba(255, 255, 255, 0.2));
	transform: skewX(-12deg) translateY(0.2083333333vw);
}

@keyframes shadow {
	0% {
		filter: drop-shadow(0 0.625vw 0.8333333333vw rgba(255, 255, 255, 0.32));
	}
	50% {
		filter: drop-shadow(0 1.25vw 1.6666666666vw rgba(255, 255, 255, 0.64));
	}
	100% {
		filter: drop-shadow(0 0.625vw 0.8333333333vw rgba(255, 255, 255, 0.32));
	}
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

@media screen and (max-width: 768px) {
	.website .container .my-projects .project-box {
		width: calc(50% - 1.25vw);
		margin-bottom: 1.25vw;
	}
}

@media screen and (max-width: 480px) {
	.website .container .my-projects .project-box {
		width: 100%;
		margin-bottom: 1.25vw;
	}
}
