*{
	box-sizing:border-box;
}
*, *:after, *:before {
  box-sizing: border-box;
}

body, html{

	font-family:neue-haas-grotesk-text,Helvetica, sans-serif;
	font-weight:400;
	font-style:normal;
	background-color:#f4f4f4;
	background-image:url(../img/brushed_alu.png);
	min-height:100vh;
	margin:0;
	padding:0;
}

 .mainGrid{
	display:grid;
	grid-template-columns:repeat(9, 1fr);
	grid-template-rows:auto;
	grid-gap:10px;
}

h1{
	font-size:2rem;
	font-weight:700;
	margin-top:0;
}

h2{
	font-size:1.25rem;
	font-weight:bold;
	color:black;
}

p, ul, ol{
	font-size:1rem;
	font-weight:normal;
}

p{
	width:clamp(45ch, 70%, 75ch);
}

img{
	max-width:100%;
	height:auto;
}

a{
	color:black;
	font-weight:bold;
	text-decoration-color:red;
	text-decoration-thickness:0.15rem;
}



.wrapper{
	width:clamp(16rem, 90vw, 75rem);
	padding:1rem;
	margin-left:auto;
	margin-right:auto;
}

main section{
	background:white;
}

.col-content{
	padding-top:15px;
	grid-column: 1 / span 7;
}

.col-content p{
	color:#696969;
	padding:0 10px 10px 10px;
}

.col-sidebar{
	grid-column:auto / span 2;
	padding-top:15px;
	border-top-left-radius:8px;	
}

.col-sidebar .topicBlock{
	width:auto;
}



header{
	background-color:#fefefe;
	height:auto;
	margin-top:0;
	padding: 0.5rem 1rem;
	width:100%;
	/*display:grid;
	grid-template-columns: repeat(9, 1fr);
	grid-column:1 / 10; */
}

.logo{
	width:100%;
	height:auto;
	margin-top:15px;
	padding-left:40px;
}



nav{
	
}

nav a{
	display:inline-block;
	color:black;
	font-size:1.25rem;
	text-decoration:none;
	padding: 0.25em 0.45em;
	margin:0;
}

nav a:hover, nav a:focus{
	background-color: rgb(200,200,200);
	color:black;
}

.hero{
	grid-column:1/10;
	width:100%;
	padding:2rem 0;
}

.hero-text{
	width:clamp(16rem, 90vw, 75rem);
	margin:0 auto;
}

.hero-text h3{
	font-weight:normal;
}



.topicBlock{
	width:100%;
	background:#F8F8FF;
	background-image:url(../img/snow.png);
	border-radius:8px;
	padding:10px 0px;
	margin-bottom:10px;	
	overflow:auto;
	
	-webkit-box-shadow:0 0 4px rgba(176,176,182, .5);
	-moz-box-shadow:0 0 4px rgba(176,176,182, .5);
	box-shadow:0 0 4px rgba(176,176,182, .5);
}

.topicBlock h3{
	
	margin-top:5px;
	margin-bottom:10px;
	/* margin-left:10px; */
	padding:0px 10px;
	font-size:18px;
	color:#333;
	
}

.topicBlock h4, h5{
	padding:0px 10px;
	color:#333;	
}



.topicBlock img{
	padding:0 10px;	
}

.topicBlock p{
	color:#696969;
	font-size:14px;	
	padding:0 10px 10px 10px;
	width: clamp(20ch, 90%, 100ch);
		
}

.project-block img{
	margin-bottom:10px;	
}



.project-block {
	margin-bottom:50px;
	border:0;
		
}

.project-block h4{
	margin-top:.25rem;
	margin-bottom:.25rem;
}

.project-block h5{
	margin-top:.25rem;
	font-weight:normal;
}

.topicGrid{
	display:grid;
	grid-template-columns:1fr 1fr;
	grid-template-rows:auto;
}
.imgGrid{
	display:grid;
	grid-template-columns:1fr 1fr;
	grid-template-rows:auto;
}

.topicGrid h3{
	max-width:90%;
	grid-column:auto / span 2;
}

.topicGrid p{
	max-width:90%;
	grid-column:auto / span 2;
}

.topicGrid a{
	max-width:100%;
	grid-column:auto / span 2;
}

.imgFull{
	max-width:100%;
	grid-column:auto / span 2;
	margin-bottom:1rem;
}

.imgLeft{
	max-width:100%;
	grid-column:auto / span 1;
	margin-bottom:1rem;
}

.col-sidebar .topicBlock a{
	padding:0 10px;
}

iframe{
	margin-left:.5rem;
}

