html {
	font-family:'Helvetica';
	width: 100%;
	margin: 0px;
	padding: 0px;
}

body.b {
	margin: 0px;
	padding-top: 4rem;
	color: #34495E;
	background-image: url(../img/climber.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
}

div.entry {
	padding: 5px;
	margin-right: 5px;
}

div.author {
	font-weight: bold;
	float: left;
}

div.date {
	text-align: right;
	width:100%;
}

div.text {
	margin-top: 0;
	clear:left;
}

div.even {
	background-color: #ECF0F1;
}

#disclaimer {
	text-align: center;
	height: 2rem;
    padding: 1rem;
	overflow: auto;
	display: block;
	font-size: 14px; 
	color: black;
	background-color: rgba(230, 126, 34, 0.9);
	z-index: 99;
	margin: 0rem 1rem 1rem 1rem;
}

#disclaimer .remove {
	position: absolute;
	top: 4.5rem;
    right: 2rem;
    cursor: pointer;
}

#disclaimer .remove:hover {
	color: darkred;
	text-decoration: underline;
}

#content {
	display: block;
	overflow: auto;
    padding: 16px;	
    font: 95% Arial, Helvetica, sans-serif;
	background: hsl(0, 0%, 97%);
	margin: 0px auto;
}

h1 {
    background: #34495E;
    padding: 20px 0;
    font-size: 140%;
    font-weight: 300;
    text-align: center;
    color: #fff;
    margin: -16px -16px 16px -16px;
}

a {
	color: black;
	text-decoration:underline;
}
 
a:visited { 
	color:black;  
}

a:focus {
	color:#2980B9; 
	text-decoration:underline; 
}

a:hover { 
	color:#2980B9; 
	text-decoration:underline; 	
}

input.text { 
	border-width: 1px;
	border-color: #065205;
	border-style: solid; 
	background-color: #ffffff;
	background-position: right; 
}

/* VORSTAND SECTION */

.grid-container {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: auto auto auto;
	justify-content: left;
	padding: 0.5rem;
}

.grid-container .card {
	height: 150px;
}

.grid-container .card img {
	border-radius: 100%;
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.card .card-text {
	text-align: center;
	padding: 0.5rem;
}

/* NAVIGATION SECTION */

#nav-bar {
    /* overflow: hidden; */
    background-color: #34495E;
    z-index: 100;
	width: 100%;
	height: 48px;
    position: fixed;
	top: 0;
	display: inline-block;
	text-align: center;
  }
  
/* Hide Hamburger */
#nav-bar label, #hamburger { display: none; }

/* Horizontal Menu Items */
#nav-items { 
	display: inline-block; 
}

#nav-items a {
    float: left;
    display: block;
    color: #ECF0F1;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    background-color: #34495E;
}

#nav-bar a.active {
    background-color: #27AE60;
    color: #ECF0F1;
}

#nav-bar a:hover {
    background-color: #ECF0F1;
    color: black;
}

@media screen and (max-width: 820px) {
    #nav-items a {
		font-size: 1.8vw;		
		min-height: 20px;
    }
}

@media screen and (max-width: 600px) {
	#nav-bar {		
		text-align: left;
	}

	/* Show Hamburger Icon */
    #nav-bar label { 
        display: inline-block; 
        color: white;
        background: #1c3044;
        font-style: normal;
        font-size: 1.2em;
		padding: 10px;
		cursor: pointer;
    }

    /* Break down menu items into vertical */
    #nav-items a {
        box-sizing: border-box;
        display: block;
        width: 100%;
        font-size: 15px;
		border-top: 1px solid #333;
    }

    #nav-items { display: none; }
	#nav-bar input:checked ~ #nav-items { display: block; }
	
	#content {
		right: 10%;
		width: 76%;
	}
}

@media screen and (min-width: 601px) {
	#content {
		right: 15%;
		width: 60%;
	}
}