@import 'https://fonts.googleapis.com/css?family=Open+Sans:600,400,300';

body {
	background-image: url("events-in-nierstein.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
	    background-size: cover;
	    color: black;
        font-family: 'Open Sans', Calibri, "sans-serif";
     	font-size: 24px;
	    line-height: 2em;	
}
h1 {
    text-transform: uppercase;
    font-family: verdana;
    font-size: 2em;
    font-weight: 700;
   color: #f5f5f5;
    text-shadow: 1px 1px 1px #919191,
        1px 2px 1px #919191,
        1px 3px 1px #919191,
        1px 4px 1px #919191,
        1px 5px 1px #919191,
        1px 6px 1px #919191,
        1px 7px 1px #919191,
        1px 8px 1px #919191,
        1px 9px 1px #919191,
        1px 10px 1px #919191,
    1px 18px 6px rgba(16,16,16,0.4),
    1px 22px 10px rgba(16,16,16,0.2),
    1px 25px 35px rgba(16,16,16,0.2),
    1px 30px 60px rgba(16,16,16,0.4);
}
a {
	font-size: 1.4em;
	font-weight: bold;
	color: black;
	text-decoration: none;
	
}
#container {
    background:rgba(255,255,255,0.7);
	margin: 40px auto;
	width: 60%; 
	height: auto;
	padding: 20px;
}
.grid-container {
  display: grid;
width: 100%;
	margin-left: auto;
	margin-right: auto;
  column-gap: 0px;
  grid-template-columns: 33% 33% 33%;
  background-color: lightgrey;
  padding: 10px;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  font-family: Verdana; 
  font-size: 16px;
  color: black;
  text-align: center;
}

@media (max-width: 680px) {
body {
        font-family: 'Open Sans', Calibri, "sans-serif";
     	font-size: 12px;
	    line-height: 1.8em;	
}
h1 {
	font-size: 28px;
	font-weight: bold;
	 text-shadow: none;
	}
	h2 {
	font-weight: bold;	
		
	}
	#container { 
	width: 90%; 
	margin-left: auto;
	margin-right: auto;
		padding: 5px;
        color: black;
	background-color: none;
}
.grid-container {
	display: block;
	width: 90%;
justify-content: center !important;
column-gap: 1px;
  grid-template-columns: auto;
  background-color: grey;

}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  font-size: 16px;
  color: black;
  text-align: left;
	padding: 5px;

}
}