@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lexend:wght@100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Lexend", sans-serif;
	overflow: hidden;
	color: white;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	color: #000;
	line-height: 1.6;
	position: relative;
	font-family: sans-serif;
	
}

.header {
	background: linear-gradient(0deg, #778392, #474F5A, #061418);
	border-width: 0 0 1px;
	z-index: 10;
	align-self: flex-start;
	flex-direction: column;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	height: stretch;
	position: relative;
}
.header img {
	filter: drop-shadow( 0 4px 4px rgba(0, 0, 0, 0.4));
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}

.header h1 {
	font-family: "Lexend", sans-serif;
	font-size: 60px;
	font-weight: 300;
	color: white;
	text-align: center;
	margin: 0 24px;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.header p {
	font-family: "Lexend", sans-serif;
	font-size: 20px;
	font-weight: 100;
	color: white;
	text-align: center;
	margin: 0 24px;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.content {
	display: flex;
	justify-content: center;
	position: relative;
	overflow: hidden;
}


.content img {
	width: 250%;
	height: fit-content;
}

@media (min-width: 720px) {
	.header h1 {
		font-size: 100px;
	}
	.header p {
		font-size: 30px;
	}
	.content {
		overflow:visible;
	}
	.content img {
		width: 100%;
		height: fit-content;
	}
}