body{
  background: url('https://miramarpaintcenter.com/cdn/shop/files/6576CatPawsMuralpict0_2048x.jpg?v=1717609482');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.container {  display: grid;
  grid-template-columns: 0.5fr 2fr 0.5fr;
  grid-template-rows: 0.4fr 0.4fr 0.4fr 3.4fr 0.4fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "v1 cosos v2"
    "v1 cosos v2"
    "v1 cosos v2"
    "v1 cosos v2"
    "v1 cosos v2";
  padding-top: .5%;
  padding-bottom: .5%;
}

.v1 { grid-area: v1; }

.v2 { grid-area: v2; }

.cosos {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0.4fr 0.4fr 0.4fr 2.8fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "a a a"
    "b b b"
    "c c c"
    "d d d";
  grid-area: cosos;
  height: 100vh;
  text-align: center;
  border-radius: 15px;
  color: white;
  	background: rgba(0,0,0,.5);
}

.a { grid-area: a; 
}

.b { grid-area: b; 
}

.c { grid-area: c; 
}

.d { grid-area: d; 
}
.botongato{
	margin-top: 5px;  
}

.maincontent{
	padding-top: 0%;
	padding-left: 0%;
}

.col{
	padding: 1%;
}

.col-lg{
	height: 400px;
	width: 100%;
	max-width: 400px;
	overflow: hidden;
	margin: 10px 5px;
	position: relative;
	flex-basis: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.col-lg img{
	display: block;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.imgrid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 479px) {
	
.container {  
  grid-template-columns: 0.05fr 2.9fr 0.05fr;
  padding-top: 1%;
  padding-bottom: 1%;
}

.cosos{
	border-radius: 5px;
}

}

@media screen and (min-width: 481px) and (max-width: 769px) {
	
.container {  
  grid-template-columns: 0.05fr 2.9fr 0.05fr;
  padding-top: 1%;
  padding-bottom: 1%;
}

.cosos{
	border-radius: 15px;
}

.col-lg{

}

.col-lg img{

}

}