body {
	background-color: rgb(17 24 39);

	/* background-image: url("images/bg2.svg"); */
	background-size: cover; /* or contain, depending on your needs */
	background-repeat: no-repeat; /* or repeat, repeat-x, repeat-y, etc. */

	color: white;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0;
	padding: 0;

	font-family: "Roboto", sans-serif;
}
a {
	color: white;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
#topbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}
#right {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
#right a {
	margin: 0 10px;
}
#main {
	display: flex;
	flex-direction: column;
	gap: 50px;
	justify-content: flex-start;
	align-items: center;
}
#bottombar {
	display: flex;

	flex-direction: column;
	gap: 20px;

	font-size: 0.9rem;

	border-top: 1px solid #5e5e5e;
	border-bottom: 1px solid #5e5e5e;
	padding: 40px 0;
}

/* media query */
@media (min-width: 500px) {
	#bottombar {
		flex-direction: row;
		justify-content: space-around;
		align-items: start;
	}
}

.bottombar-section {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;

	gap: 0.7rem;
}
.bottombar-section a {
	color: #b2b4b3;
}
.bottombar-section-title {
	font-weight: bold;
	color: white;
}
#copyright {
	padding-bottom: 40px;
	color: #b2b4b3;
}
#visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
h1 {
	text-align: center;
	/* margin: 100px 0 80px 0; */
	background: linear-gradient(to right, #2dd4bf, #22d3ee);
	/* background-image: linear-gradient(to right, #2dd4bf var(--tw-gradient-from-position), #22d3ee var(--tw-gradient-to-position)); */
	background-clip: text;
	color: transparent;
	margin: 0;
}

@media (min-width: 500px) {
	h1 {
		font-size: 3em;
	}
}
.button {
	background-color: #03b09c;
	border-radius: 5px;
}
.button:hover {
	background-color: #03b09c;
	text-decoration: none;
}
.button:active {
	background-color: #00796b;
	text-decoration: none;
}
.bigbutton {
	font-size: 1.5em;
	padding: 10px 20px;
	box-shadow: 0px 0px 1px 1px #83ddd5;
}

.midbutton {
	font-size: 1.2em;
	padding: 8px 16px;
}

.video-container {
	width: 500px;
	height: 480px;
	position: relative;
}

.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensure the video covers the container */

	border-radius: 4px;
	box-shadow: 0px 0px 8px 1px #232526;
}
@media (min-width: 200px) {
	.video-container {
		width: 160px;
		height: 150px;
	}
}

@media (min-width: 300px) {
	.video-container {
		width: 270px;
		height: 260px;
	}
}
@media (min-width: 400px) {
	.video-container {
		width: 360px;
		height: 340px;
	}
}

@media (min-width: 600px) {
	.video-container {
		width: 450px;
		height: 420px;
	}

}
@media (min-width: 1000px) {
	.video-container {
		width: 500px;
		height: 480px;
	}
}
