body {
	background-color: #333;
	color: white;
	font-family: Arial;
	margin: 0;
	font-size: 17px;
}

@media only screen and (max-width: 1100px) {
	#header {
		width: 500px !important;
	}
	main {
		width: 500px !important;
	}
}
@media only screen and (max-width: 550px) {
	#header {
		width: 250px !important;
	}
	#txtlogo {
		display: none;
	}
	main {
		width: 250px !important;
	}
}


header {
	background-color: #56b03a;
	padding: 12px 18px;
}

#header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto;
	align-items: center;
}

#logo {
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
}

#logo img {
	height: 35px;
	width: auto;
	margin-right: 5px;
}

#time {
	display: flex;
	align-items: center;
}

#time > img {
	width: 30px;
	height: auto;
}

#time > span {
	font-size: 20px;
	margin-left: 5px;
}

main {
	width: 1000px;
	margin: 25px auto 0 auto;
	text-align: center;
}

main > h1 {
	font-size: 2.5em;
}

#przycisk {
	font-size: 30px;
	padding: 8px 12px;
	border: none;
	border-radius: 7px;
	color: white;
	background-color: #56b03a;
}

#przycisk:hover {
	background-color: #349018;
	cursor: pointer;
}

#backgroundimg {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

#dc {
	display: flex;
	align-items: center;
	text-decoration: none;
	width: fit-content;
	background-color: #7289DA;
	padding: 8px 12px;
	border-radius: 7px;
	margin: 15px auto 0 auto;
}

#dc:hover {
	background-color: #5067B8;
}

#dc > img {
	height: 35px;
	width: auto;
}

#dc > span {
	color: white;
	text-decoration: none;
	font-size: 30px;
	font-weight: 700;
	margin-left: 5px;
}