@charset "UTF-8";
::-webkit-scrollbar{
  width: 10px;
}

/* Variables ----------------------------------------------------------------- */

:root{
  --link-color          : #FF4B0A;
  --navbar-text-color   : #ffffff;
  --bg-color            : #EBEBD6;
  --black               : #352D39;
  --navbar-active-color : #FFC145;
  --navbar-bg-color     : #072AC8;
  --table-odd-color     : #cfcfb5;
  --table-even-color    : #EBEBD6;
  --green               : #26C485;
  --rose                : #ff459c;
}

/* Body -------------------------------------------------------------------- */
*{
  font-family: monospace;
}

body{
  background-color: var(--bg-color);
  margin: 0;
  font-size: calc(15px + 0.01vw);
}

h1, h2{
  color: var(--navbar-bg-color)
}
.center{
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  max-width: calc(35% + 300px);
  flex-direction: column;
}

.center img{
  width: 100%;
  margin: 10px;
}

.center-2{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(35% + 300px);
  flex-direction: column;
  margin-top: 3%;
  margin-bottom: 5%;
}

.center-3{
  display: grid;
  align-items: top;
  grid-template-columns: 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(35% + 300px);
  margin-top: 3%;
  column-gap: 5px;
}

.center-4{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  flex-direction: column;
  margin-top:3%;
}

.footer-index{
  bottom: 0;
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6%;
  max-width: calc(35% + 300px);
  text-align: center;
}

/* Index ------------------------------------------------------------------- */

.links{
  position: relative;
  display: flex;
  justify-content: space-around;
  /* max-width: calc(300px+2em); */
  font-size: calc(25px + 0.8vw);
  font: bold;
}

.links a:visited, .links a:link{
  color: var(--link-color);
  text-decoration: none;
}

.links a:hover, .links a:visited:hover{
  color : var(--bg-color);
  background-color :var(--link-color);
}

a:visited, a:link{
  color: var(--link-color);
  text-decoration: none;
}

a:hover, a:visited:hover {
  color :var(--bg-color);
  background-color :var(--link-color);
}

/* Navbar ----------------------------------------------------------------- */

.navbar{
  width: 100%;
  background-color: var(--navbar-bg-color);
}

.navbar li a:visited, .navbar li a:link, .navbar a{
  color: var(--navbar-text-color);
  font-weight: bold;
  text-decoration: none;
}
.navbar li a:hover, .navbar li a:visited:hover{
  color: var(--navbar-bg-color);
  font-weight: bolder;
  background-color: var(--navbar-text-color);
}

.navbar li img{
  height: 100%;
}

.navbar ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: calc(25px);
}

.navbar li{
  float: left;
  padding: 14px 16px;
  display: block;
  text-align: center;
}

.active {
  color:var(--navbar-active-color)
}

/* Table --------------------------------------------------------------------- */

table, td , th{
  table-layout: auto;
}
table{
  width: 100%;
  margin-bottom: 20px;
}

 th, td {
  padding: 5px;
}
table, th{
  border: solid 1px black;
  border-collapse: collapse;
}

table, td{
  border-left: solid 1px;
}

tr{
  border-bottom: dotted 1px;
}

tbody tr:nth-of-type(odd){
  background-color: var(--table-odd-color);
}
tbody tr:nth-of-type(even){
  background-color: var(--table-even-color);
}


thead{
  background-color: var(--navbar-bg-color);
  color: var(--navbar-text-color);
}

/* Bede ----------------------------------------------------------------------- */

.bd img{
  position: relative;
  width: calc(400px + 20vw);
  outline: 2px solid var(--navbar-bg-color);
}

/* Galerie --------------------------------------------------------------------- */

.galerie{
  margin-right:5%;
  margin-left:5%
}

.galerie img{
  width: 32%;
  outline: var(--navbar-bg-color) solid 3px ;
  margin-bottom: 10pt;
  margin-right:5pt;
}

.flyers{
        text-align: center;
        display: block;
    }

.flyers img{
    margin-bottom: 5%;
    border: solid 2pt var(--bg-color);
}

/* Buttons etc */

.button {
  background-color: var(--bg-color);
  border: 2px solid var(--navbar-bg-color);
  padding: 15px 32px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.button:active {
  background-color: var(--navbar-bg-color);
  border: 2px solid var(--bg-color);
  color: var(--bg-color);
}