@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

.archivo {
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 72px;
}

.saira {
	font-family: "Saira", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}


.purpleGradient {
	background: #07050c;
	background: radial-gradient(at center, #210c87, #000);
}

.white-text {
	color: #fff;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}

.blue-text {
	color: #009DDC;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}

.main-logo {
	max-width: 300px;
}

.header-buttons button {
	width: 180px;
	padding: 10px 0px;
	border-radius: 5px;
}

.rounded-border {
	border-radius: 10px;
}

.submit {
	font-size: 24px;
	border-radius: 10px;
	width: 150px;
	padding: 10px;
}


@media screen and (min-width: 635px) {
	.name-header {
		font-size: 80px;
	}

	.professional {
		font-size: 40px;
	}

	.header-text {
		font-size: 20px;
	}
}

@media screen and (min-width: 424px) and (max-width: 634px) {
	.name-header {
		font-size: 50px;
	}

	.professional {
		font-size: 25px;
	}

	.header-text {
		font-size: 15px;
	}
}

@media screen and (max-width: 423px) {
	.name-header {
		font-size: 30px;
	}

	.professional {
		font-size: 20px;
	}

	.header-text {
		font-size: 12px;
	}
}


#form-messages.success {
	color: green;
	font-weight: bold;
}

#form-messages.error {
	color: red;
	font-weight: bold;
}

.dropShadow {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

.rounded-btn {
	border-radius: 5px;
}

.section-title {
	font-size: 72px;
	font-family: "Saira", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 700;
	color: #009DDC;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}

.skill-card {
	width: 200px;
	padding: 10px;
	margin: 10px;
}

.skill-card p {
	font-size: 20px;
	font-family: "Saira", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

.spacer {
	width: 100%;
	height: 80px;
}

@media only screen and (max-width: 519px) {
	.header-image {
		background-image: url(../img/banner_img_sm.png);
	}
}

@media only screen and (min-width: 520px) and (max-width: 959px) {
	.header-image {
		background-image: url(../img/banner_img_md.png);
	}
}

@media only screen and (min-width: 960px) {
	.header-image {
		background-image: url(../img/banner_img.png);
	}
}


.mouse {
	width: 20px;
	height: 40px;
	border: 3px solid #fff;
	border-radius: 60px;
	position: relative;

	&::before {
		content: '';
		width: 8px;
		height: 8px;
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		background-color: #fff;
		border-radius: 50%;
		opacity: 1;
		animation: wheel 2s infinite;
		-webkit-animation: wheel 2s infinite;
	}
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 25px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 25px;
	}
}

.portfolio-toggle {
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
}


#portfolio-img {
	width: 100%;
	height: 100vh;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.portfolio-main {
	background-image: url(../img/PortfolioMain.png);
}

.test1 {
	background-image: url(../img/Test.png);
}

.test2 {
	background-image: url(../img/Test2.png);
}

.test3 {
	background-image: url(../img/Test3.png);
}

.large-link {
	font-size: 48px;
}

.portfolio-section {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.project-video {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	z-index: 0;
}