* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 180px;
    background-color: rgb(182, 223, 255);
    font-family: 'Raleway', sans-serif;
}

#top {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    background-color: rgb(182, 223, 255);
    padding-bottom: 20px;
}

#logo-name-1 {
    font-weight: bold;
    font-size: 50px;
    color: white;
    padding: 0 20px;
    background-color: cornflowerblue;
    display: inline-block;
}

@media screen and (max-width: 800px) {
  #logo-name-1 {
    font-size: 20px;
  }
}

#logo-name-2 {
    font-weight: 600;
    font-size: 25px;
}


/*---------------------------Beginn Navigation von Koni--------------------------*/

.navigation {
    padding-top: 15px;
    overflow: hidden;
}

.navigation a {
    float: left;
    display: block;
    padding: 8px;
    font-weight: 500;
    text-decoration: none;
    color: black;
}

.navigation a:hover {
    background-color: cornflowerblue;
    color: white;
}

.navigation a.active {
    background-color: rgb(19, 70, 163);
    color: white;
}

.navigation .icon {
  display: none;
  background-color: rgb(182,223,255);
}

@media screen and (max-width: 600px) {
  .navigation a:not(:first-child) {display: none;}
  .navigation a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navigation.responsive {position: relative;}
  .navigation.responsive .icon {
    position: absolute;
    right: 0;
    top: 15px;
  }
  .navigation.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
}

/*--------------------------------- Ende Navigation-----------------*/



#main-content {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}
#main-content-1 {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}
#main-content-r {
    max-width: 1280px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align:center;
}
#main-content-r a{
    text-decoration: none;
}

#main-content-r1 {
    max-width: 1280px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align: center;
    font-weight: bold;
    font-size: large;
}

#main-content-r2 {
    max-width: 850px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 0 20px 20px 0;
    text-align: center;
}

#main-content-r2 a {
    text-align: center;
    float: left;
    display: block;
    padding: 8px;
    font-weight: 500;
    text-decoration: none;
    color: black;
}
#main-content-r2 a:hover {
    text-decoration: none;
    background-color: cornflowerblue;
    color: white;
    padding: 8px;
}

#main-content-r3 {
    max-width: 1280px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align:center;  
}

#main-content-r31 {
    max-width: 750px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align:center;  
}


#main-content-a {
    max-width: 1280px;
    font-size: 20px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

#main-content-c {
    max-width: 750px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

#main-content-p {
    max-width: 1280px;
    font-size: 20px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}


#footer {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: white;
    background-color: cornflowerblue;
}

.bilder-x {
  width: 100%;
}

/* Slideshow container */
.slideshow-container {
    /*max-width: 1280px;*/
    max-width: 100%;
    position: relative;
    margin: auto;
}

/*Next & previous buttons*/
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/*Position the "next button to the right*/
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/*On hover, add a black background colro with a little bit see-through*/
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 8);
}

/*The dots/bullets/indicator*/
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/*Fading animation*/
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width:300px) {
    .prev, .next {font-size: 11px;}
}


