
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
	color:white;
}
/* hier wird das Hintergrundbild festgelegt*/
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
	 background-image: url('Sternhimmel.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    
}
/*hier satrtet das Menue*/
#Text {
	text-align: center;
	color:white;
}

header {
    background: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
/*hier hört das Menue auf*/
h1 {
    margin-top: 20px;
    text-align: center;
}

main {
    padding: 20px;
}

.Collage {
  width: 80%; 
  margin: auto;
  overflow: hidden; 
  
}

.Collagenbild{
  width: 50%;
}

.carousel-image{display:none}

button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size:large;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
figcaption{
color:white;
}