@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html {
	scroll-behavior: smooth;
}
body {
	scroll-behavior: smooth;
	font-family: "Montserrat", sans-serif;
	background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
}

#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	z-index: -1;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	/* display: flex; */
	justify-content: space-around;
	color: white;
	align-items: center;
	height: 100px;
	width: 100vw;
	transition: all 0.5s;
	background: rgb(0, 0, 0, 0);
	z-index: 10;
}

header #logo {
	align-self: flex-start;
	position: absolute;
	left: 0;
}

header a {
	color: white;
	text-decoration: none;
}

header a:hover {
	text-decoration: underline;
}

header img {
	height: 100px;
	transition: all 0.5s;
}

html:not([data-scroll="0"]) header img {
	height: 50px;
}

html:not([data-scroll="0"]) header {
	/* background: rgb(0, 0, 0);
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.3) 70%,
		rgba(0, 212, 255, 0) 100%
	); */
	background-color: #0c121d;
	height: 60px;
}

html:not([data-scroll="0"]) header nav {
	top: 20px;
}

header nav {
	position: absolute;
	right: 10%;
	top: 30px;
}

header nav a {
	margin-left: 30px;
	position: relative;
	padding: 0.2em 0;
}

header nav .nav-active {
	text-decoration: underline;
}

@media screen and (max-height: 700px) {
	header {
		position: absolute;
		top: 0;
	}
}

@media screen and (max-width: 700px) {
	header {
		height: 80px;
	}
	header img {
		height: 50px;
	}

	header nav {
		display: flex;
		flex-direction: column;
		top: 5px;
	}

	html:not([data-scroll="0"]) header nav {
		top: 5px;
	}

	html:not([data-scroll="0"]) header {
		height: 80px;
	}
}

section {
	height: 100vh;
	scroll-behavior: smooth;
}

@media screen and (max-width: 700px) {
	section {
		min-height: 100vh;
	}
}

#home {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

blockquote {
	font-family: Georgia, serif;
	font-size: 3em;
	font-style: italic;
	max-width: 600px;
	margin: 0.25em 0;
	padding: 0.35em 40px;
	line-height: 1.45;
	position: relative;
	color: white;
}

blockquote:before {
	display: block;
	padding-left: 10px;
	content: "\201C";
	font-size: 80px;
	position: absolute;
	left: -20px;
	top: -20px;
	color: white;
}

blockquote cite {
	color: white;
	font-size: 20px;
	display: block;
	margin-top: 5px;
}

blockquote cite:before {
	content: "\2014 \2009";
}

#home a {
	background-color: transparent;
	border: 2px solid white;
	padding: 20px 50px;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.5s;
}

#home a:hover {
	background-color: white;
	color: #0f2027;
}

@media screen and (max-width: 700px) {
	blockquote {
		font-size: 1.5em;
		width: 80%;
		margin: 0.25em 0;
		padding: 0.35em 40px;
		line-height: 1.45;
		position: relative;
	}

	blockquote cite {
		font-size: 13px;
	}
}

#indicator {
	display: flex;
	flex-direction: column;
	color: white;
	align-items: center;
	justify-content: center;
}

.indicator-description {
	text-align: center;
	margin-bottom: 50px;
}

#indicator-container {
	display: flex;
	flex-direction: column;
	/* align-items: space; */
	justify-content: space-around;
}

#indicator-container-2 {
	display: flex;
	flex-direction: row;
	/* align-items: space; */
	justify-content: space-around;
}

#indicator h1 {
	font-size: 5em;
	margin: 0;
}

.indicator-punchline {
	font-size: 3em;
	margin: 0;
}

.indicator-line {
	display: flex;
	justify-content: space-around;
	font-size: 1.5em;
	text-align: center;
}

.indicator-item {
	display: flex;
	flex-direction: column;
	width: 50%;
	justify-content: space-between;
	font-size: 1.5em;
	text-align: center;
	align-items: center;
}

.indicator-item-description {
	padding: 0 50px 0 50px;
	min-height: 60px;
}

.indicator-line > h2,
.indicator-line > a,
.indicator-line > p {
	width: 50%;
}

.indicator-line > h2,
.indicator-item > h2 {
	text-transform: uppercase;
}

.indicator-line p {
	padding-left: 80px;
	padding-right: 80px;
}

#indicator .link-btn {
	background-color: transparent;
	border: 2px solid white;
	padding: 20px 50px;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.5s;
	width: 25%;
	margin-top: 50px;
}

#indicator .link-btn:hover {
	background-color: white;
	color: #0f2027;
}

#indicator .indicator-item .link-btn {
	width: 50%;
}

/* .indicator-container-mobile {
	display: none;
} */

@media screen and (max-width: 1700px) {
	/* #indicator-container-2 {
		flex-direction: column;
		align-items: center;
	}*/

	.indicator-item img {
		width: 80%;
	}
}

@media screen and (max-width: 700px) {
	/* .indicator-container-mobile {
		display: flex;
	}
	.indicator-container-desktop {
		display: none;
	} */

	#indicator-container {
		flex-direction: column;
	}

	#indicator-dave {
		flex-direction: column;
		flex-flow: wrap-reverse;
	}

	#indicator-cover {
		margin-top: 20px;
	}

	#indicator-dave-img-container {
		width: 40px;
		margin: 0;
	}

	#indicator-dave-description div:nth-child(1) {
		font-size: 20px;
	}

	#indicator-dave-description div:nth-child(2) {
		font-size: 15px;
	}

	#indicator-cover img {
		width: 200px;
	}

	.indicator-description {
		width: 80%;
	}

	#indicator h1 {
		font-size: 3em;
	}
	.indicator-description .indicator-punchline {
		font-size: 1.5em;
	}

	#indicator .link-btn {
		padding: 10px 30px;
		color: white;
		text-decoration: none;
		border-radius: 50px;
		transition: all 0.5s;
		width: 25%;
		margin-top: 40px;
		font-size: 18px;
	}

	.indicator-item h2 {
		font-size: 1em;
	}

	.indicator-item-description {
		font-size: 20px;
	}
}

#contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	width: 100%;
	position: relative;
}

#contact h1 {
	font-size: 3em;
}

#contact #contact-x-container {
	border-radius: 100px;
	height: 200px;
	background-color: aliceblue;
	display: flex;
	justify-content: space-between;
	margin: 5px;
	border: 2px solid white;
}

#contact #contact-x-container img {
	height: 100%;
	width: auto;
	border-radius: 100px;
}

#contact a {
	max-width: 500px;
	width: 90%;

	border-radius: 110px;
	color: #292929;
	text-decoration: none;
	transition: all 0.2s;
	border: 5px solid transparent;
}

#contact a:hover {
	border: 5px solid white;
}

#contact p:nth-child(1) {
	font-weight: bold;
	font-size: 2em;
}

#contact p:nth-child(2) {
	font-size: 1.5em;
}

#contact #contact-x-username {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-right: 40px;
}

#contact #contact-x-username p {
	margin: 0;
}

@media screen and (max-width: 700px) {
	#contact #contact-x-container {
		height: 150px;
	}

	#contact #contact-x-username {
		margin-left: 10px;
	}

	#contact h1 {
		font-size: 2.5em;
	}

	#contact p:nth-child(1) {
		font-weight: bold;
		font-size: 1.5;
	}

	#contact p:nth-child(2) {
		font-size: 1em;
	}
}

#copyright {
	position: absolute;
	bottom: 10px;
	color: #38496c;
}
