body{
	background-color: black;
	background-image: url('literally alien.jpg');
	background-repeat: no-repeat;
	background-size: 3000px 1500px;
	background-position: top;
	background-attachment: fixed;
}


header{
	border-bottom: 0px solid white;
}

header{
	height: 70px;
	display: grid;
	grid-template-columns: 20% 80%;
}

.logo{
	/* border: 1px solid white; */
	padding-left: 10px;
	grid-column-start: 1;
	grid-column-end: 2;
}

.title{
	/* border: 1px solid white; */
	grid-column-start: 2;
	grid-column-end: 3;
	font-family: monospace;
	font-size: 30px;
	padding-top: 12px;
}

.turinys{
	display: grid;
	grid-template-columns: 20% 65% 25%;
}

/* .kaire{
	grid-column-start: 1;
	grid-column-end: 2;
} */

.desine{
	grid-column-start: 2;
	grid-column-end: 3;
}

.desine{
	padding-top: 10px;
}

.desine article:hover{
	color: white;
	background-color: black;
}

div.gallery {
	/* margin: 5px; */
	padding: 10px;
	border: 1px solid #ffffff;
	float: left;
	width: 280px;
	height:280px;
	object-fit: cover;
}
  
div.gallery:hover {
	background-color: white;
}
  
div.gallery img {
	width: 280px;
	height: 280px;
	object-fit: cover;
}

@media screen and (max-width:600px){ /*600px ir maziau */	
	div.gallery {
		/* margin: 5px; */
		padding: 10px;
		border: 1px dotted #ffffff;
		float: left;
		width: 280px;
		height:280px;
		/* object-fit: cover; */
	}

	div.gallery img {
		width: 280px;
		height: 280px;
		object-fit: cover;
	}

	header{
		height: 70px;
		display: grid;
		grid-template-columns: 28% 72%;
	}

	}