body {
  margin: 0;
  padding: 0;
  background-color: #e0e0e0; 
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  height: 100vh; 
}

#myVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container {
	display: flex;
	align-items: center;
	width: 100%;
}
.sidebar {
	width: 300px;
	background-color: rgba(11, 20, 145, 0.7);
	overflow-x: hidden;
	padding-top: 0;
	border-radius: 15px;
	margin-right: 30px;
}
.red-panel {
	width: 300px;
	height: 5px;
	background-color: #ff0000;
	text-align: center;
	border-radius: 0;
}
.sidebar a {
	text-align: center;
	text-decoration: none;
	font-size: 24px;
	color: #fff;
	display: block;
	padding: 20px 0;
	transition: 0.3s;
}
.sidebar a:hover {
	background-color: rgba(216, 176, 73);
	color: #ffffff;
}
.colored-text {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #084484;
	margin-top: 0px;
	padding: 10px;
	background-color: #fff;
	border-radius: 15px 0 0 0px;
}
.podpis {
	position: absolute;
	bottom: 10%;
	right: 10%;
	font-size: 9px;
	color: #7f7b7b8b;
}
@media screen and (max-width: 1250px) {
	.sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		display: flex;
		flex-wrap: wrap;
		overflow: visible;
	}
	.red-panel {
		display: none;
	}
	.sidebar a {
		flex: 1;
		padding: 0.5rem;
		padding-inline: 1rem;
		font-size: smaller;
	}
	.sidebar .colored-text {
		width: 100%;
		text-align: center;
		font-size: 18px;
		font-weight: bold;
		color: #084484;
		margin-top: 0px;
		padding: 10px;
		background-color: #fff;
		border-radius: 0 0px;
		border-bottom: 3px red solid;
	}
	.container {
		display: block;
	}
}