@import url("https://use.typekit.net/ita8gbm.css");
:root {
	/* VARIABLES */
	--main-color: #953f2f;
	--secondary-color: #1a1a1a;
	--text-color: #f2f2f2;

	font-family: sans-serif;
	color: white;
}
.hidden {
	display: none;
	visibility: hidden;
}
body {
	background-color: var(--main-color);
	color: white;
	padding: 0;
	margin: 0;
}

/* MAIN */

main {
	width: 100%;
	padding-top: 40px;
}
#bio-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#logoFlex {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#logo {
	width: 25%;
}

p {
	text-align: left;
	width: 70%;

	font-weight: 500;
	font-size: 1.25em;
	color: white;
}

/* BUTTONS */
#links {
	display: flex;
	flex-direction: column;
	justify-content: center;

	width: 60%;
	margin-top: 25px;
	margin-bottom: 40px;
}
#links a:first-child {
	background: radial-gradient(circle, #77ab3f, #a7e268);
	background-size: 1000% 1000%;
	animation: nav-color 15s ease-in-out infinite;

	color: rgb(22, 22, 22);
}
#links a {
	padding: 25px 40px 25px 40px;
	margin-bottom: 25px;
	border: 5px #171717 solid;
	border-radius: 10px;

	text-decoration: unset;
	font-weight: 800;
	font-size: 1.25em;
	color: #ffffff;
	text-align: center;

	background-color: #171717;
	box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.206);

	transition: all 0.15s ease-in-out;
}
#links a:hover {
	color: var(--main-color);
	border-color: var(--main-color);
}

/*footer*/
footer {
	text-align: right;
	margin-right: 20px;
}
footer a {
	color: black;
	text-decoration: unset;
	text-decoration: underline;
}
footer a:hover {
	color: #e9054a;
}

/*VIDEOS*/
#movie-page {
	background: radial-gradient(
		circle,
		rgb(101, 190, 218),
		rgb(255, 234, 81),
		#f0944b
	);
	background-size: 1000% 1000%;
	animation: nav-color 60s ease-in-out infinite;
}
#movies {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;

	height: 90vh;
	width: 100vw;

	margin: 0;
	padding: 0;
}
#movies div {
	width: 27%;
}
video {
	width: 100%;
}

/* Media Queries */

@media screen and (max-width: 800px) {
	#logo {
		width: 60%;
	}

	/* Movies */
	#movies {
		flex-direction: column;
	}
	#movies div {
		width: 70%;
	}
}

/*SCROLL COLOR*/
@keyframes nav-color {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
