body{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.5;
	font-family: sans-serif;
	background-color: #e7e7e7;
}
a{
	text-decoration: none;
	color: white;
}
.bottomlinks ul{
	list-style: none;
	padding: 0;
}

.news img,.sidebar img{
	box-sizing: border-box;
	width: 100%;
}
.articlecontent{
	padding: 1rem;
}
.article{
	margin-bottom: 1rem;
	margin-left: 1rem;
	background-color:white;
}
.pins{
	padding: 1rem;
	margin-bottom: 1rem;
	background-color:white;	
}
.footer{
	background-color:rgba(0, 0, 0, 0.96);
	color: white;
}
.footer .bottomlinks{
	text-align: left;
}
.header{
	background-color: white;
	margin-bottom: 1rem;
}
img{
	max-width: 100%                    /* to make all images responsive */
}



/************************** grid layout ***************************/

.container{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: 
    'head head head'
    'news news side'
    'foot foot foot';
    gap: 10px;
}

.header{
	text-align: center; 
    grid-area: head;
}
.footer{
    grid-area: foot;
}
 
.footer{
	display: flex;
	flex-direction: row;
	justify-content: space-around;  /* so that automatically equal spaces is arranged between the links */
}

.news{
    grid-area: news;
}
.sidebar{
    grid-area: side;
}



