*{
	box-sizing: border-box;
}
body{
	background-color: pink;
	font-family: fantasy;
}
.header{
	text-align: center;
	background-color: #74f2df;
	padding-top: 6px;
	padding-bottom: 6px;
	border-radius: 10px;
	color: blue;
	margin-top: 10px;
}
.row{
	display: table;
}
.leftcol{
	width: 75%;
	float: left;
}
.rightcol{
	width: 25%;
	float: left;
	padding-left: 10px;
}
.card{
	background-color: orange;
	padding: 10px;
	border-radius: 10px; 
	margin-top: 10px;
}
img{
	width: 100%;
	border-radius: 10px;
}
.pul{
	width: 50%;
}
a{
	color: grey;
	font-size: 25px;
	text-decoration: none;
}
a:hover{
	text-shadow: 3px 3px grey;
	transition: 1s;
}
.czerwony{
	color: red;
}
i{
	font-size: 35px !important;
	margin: 10px;
}
.pomarancz{
	color: #ff670c;
}
.modalDialog{
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0,0.85);
	display: none;
}
.modalDialog:target{
	display: block;
}
.modalDialog > div{
	width: 700px;
	position: relative;
	margin: 10% auto;
	background: white;
	padding: 10px;
	border-radius: 10px;
}
.zamykanie{
	text-decoration: none;
	color: white;
	background: #606060;
	line-height: 25px;
	width: 24px;
	position: absolute;
	top: -10px;
	right: -12px;
	text-align: center;
	border-radius: 12px;
	font-weight: bold;
	box-shadow: 1px 1px 3px #000;
}
.zamykanie:hover{
	background: #404040;
}
.male{
	width: 25%;
}