/* Allgemein */
body {
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 0;
	line-height: 1.5;
	
/* Background */
	background-image: url('../backgrounds/background_bourny.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

}

/* Textformattierung */
h1 {
	
	background-color: lightgrey;
	color: black;
	text-align: center;
	margin: 0;
}

h2 {
	
	background-color: lightgrey;
	color: black;
	text-align: center;
}

h3 {
	
	background-color: lightgrey;
	color: black;
	text-align: center;
}

p {
	text-align: center;
}

ul {
	background-color: lightgrey;
	color: black;
	list-style-position: inside;
    padding-left: 0;
	text-align: center;
}

li {
	background-color: lightgrey;
	color: black;
	text-align: center;
}



/* Button Formattierung */

button {
  display: block;
  margin: 2rem auto;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #0095f6;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #0078cc;
}


/* Instagram Feed */


.post-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  justify-items: center;
}

.instagram-media {
  width: 100% !important;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
}


footer {
  text-align: center;
  color: #888;
  padding: 1rem;
  font-size: 0.9rem;
}