*
{
	background-image: url(img/bg.png);
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
}

.body {  font-family: Arial, sans-serif; margin: 20px; }
        
        .container { max-width: 1200px; margin: 0 auto; }
        .offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .offer-card { border: 1px; padding: 15px; border-radius: 8px; }
        .offers { grid-template-columns: repeat(3, 1fr); }
        .offer-card img { width: 100%; height: 200px; object-fit: cover; }
        .price { font-size: 1.5em; color: #27ae60; font-weight: bold; }
        .przycisk {
	background:linear-gradient(to bottom, #302c2b 5%, #bc3315 100%);
	background-color:#302c2b;
	border-radius:28px;
	border:1px solid #942911;
	text-align:center;
    display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	text-decoration:none;
	width: 90%;
    text-shadow:0px 1px 0px #854629;
    padding: 5px 0;
}
.przycisk:hover {
	background:linear-gradient(to bottom, #bc3315 5%, #302c2b 100%);
	background-color:#bc3315;
}
.przycisk:active {
	position:relative;
	top:1px;
}