/*
	BlogKit Design V1.0 (07.2021)
    source: https://github.com/fuerchtegottt/javalab/tree/master/XMLBlog
*/

.blog{
	margin-top: 2em;
  	margin-bottom: 1em;
  	margin-right: 1em;
  	margin-left: 1em;
  	min-width: 60em;
    	min-height: 85vh;
    	display: flex;
    	flex-direction: column;  
}
.footer{
    border: groove;
	font-size: 1em;
	margin-top: auto;
	height: 1.2em;
	background-color: black;
    color: white;
}

.blogtitle{
	border: groove;
	font-size: 3em;
	text-align: center;
	/* background-image: url("bridge.jpg"); */
	background-color: black;
    	color: white;
	margin-bottom: 0.5em;
	height: 1.2em;
}

.blogentry{
	border: dotted;
	margin-bottom: 0.5em;
	margin-right: 20em;
    	margin-left: 20em;
	background-color: white;
}

.entryheader{
	border: groove;
	background-color: blue;
	color: white;
}

.entrydate{
	font-size: 1em;
	text-align: left;
}

.entrytitle{
	font-size: 2em;
	text-align: center;
}

.entryimage{
	text-align: center;
}

.entrylink{
	text-align: left;
	margin-left: 4em;
}

.entrydesc{
	text-align: left;
	margin-left: 4em;
}

.codebox{
 	margin-top: 1em;
  	margin-bottom: 1em;
  	margin-left: 6em;
  	margin-right: 6em;
  	padding: 15px;
  	font-family: Courier, sans-serif;
  	font-size: 1em;
  	line-height: 1.3;
  	color: #fff;
  	background-color: #2c3e50;
  	-webkit-border-radius: 6px 6px 6px 6px;
  	-moz-border-radius: 6px 6px 6px 6px;
  	border-radius: 6px 6px 6px 6px;
  	margin-bottom: 10px;
  	white-space: pre-line
}

table, th, td {
 	border: 1px solid gainsboro;
}

td {
  	text-align: center;
}

body {
 	background-image: url("sky.jpg");
 	background-size:cover;
}