/* v1 css */

/************************************************************************
 * Member Org styling
 ************************************************************************/

body {
    font-family: Helvetica;
}

* {
    box-sizing: border-box;
}

.heading {
	text-align: center;
	margin: 50px auto 100px auto;
	width: 360px;
}

.heading h1 {
	font-family: Helvetica Neue;
	font-size: 60px;
	font-weight: 800;
}

.rectangle {
	max-width: auto;
	height: 350px;
	background: rgb(215, 241, 250);
	z-index: -1;
}

.description {
	text-align: justify; 
	font-family: Helvetica; 
    font-size: 16px; 
    font-weight: 200;
	line-height: 28px; 
    margin: 80px auto 50px auto;
	width: 25em;	
}

.grid {
  	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	padding: 5px;
}

@media screen and (max-width:768px) {
  .grid { grid-template-columns: auto auto; }
}

.grid .cell {
	padding: 10px;
	background: #fff;
	
	font-family: Helvetica;
	font-weight: 200;
	text-align: center;
	border: 1px solid #fff;
}

.grid .cell h2 {
	font-family: Helvetica;
	font-size: 15px;
}

.grid .cell p {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 12px;
}




















