
		
.container{
	display: grid; 
	grid-template-columns: repeat(12, [col-start] 1fr); 
	grid-template-rows: repeat(12, [row-start] auto);
}
.container button{
	 background: #d9fae0;
    border-radius: 10px;
    border: solid 1px #191a1a;
    color: #1c561e;
    cursor: pointer;
    padding: 6px 12px;
    font-family: sans-serif;
    transition: 100ms cubic-bezier(0.455, 0.03, 0.515, 0.955); 
    font-size: 17px;
    }
    
.top_menu{
		display: grid; 
		grid-column: 1;	
		grid-row: 2;
		color: #00aa7f;
		align-items: center;
  		align-content: center; 
		text-decoration: none;
    	text-align: center;
    	justify-content: center;
    	}
    	
.top_menu ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.gallery_photos{
	display: grid; 
	grid-column: 3/ span 8;	
	grid-row: 2/ span 8;   
  	justify-content: center;
}

.gallery_photos  img {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
  			width: 100%;
			height: auto;	
 justify-self: center;

}

.gallery_footer{
	grid-column: 6; 
	grid-row: 12;
}

.footer_menu{

		width: 100%;
		display: flex;
		align-items: center;
  		align-content: center; 
		text-decoration: none;
    	text-align: center;
    	justify-content: center;
}

.footer_menu ul{
		list-style: none;
		display: flex;
  		align-items: center;
  		align-content: center;
	}

.footer_menu li{
		display:flex;
		justify-content: center;
		margin: 5px;
	}

.footer_menu button{
	 background: #d9fae0;
    border-radius: 10px;
    border: solid 1px #191a1a;
    color: #1c561e;
    cursor: pointer;
    padding: 6px 12px;
    font-family: sans-serif;
    transition: 100ms cubic-bezier(0.455, 0.03, 0.515, 0.955); 
    font-size: 17px;
    }
     
.footer_menu button:hover {
      background-color: #8ACF7B;
      color: #D5F13A;
    }
   
    
.footer_menu button:active {
  		transform: translateY(4px);  
 }     

