/*=======================================
Home Stylesheet für die Meder Website
Aufbau: 1. Grundlegende Formatierung
		    2. Navibereich
======================================*/

@import "Base.css";
@media screen {

/*=======================================
  1. Grundlegende Formatierung
=======================================*/

body {
  overflow: hidden;
  background: linear-gradient(90deg, red 43%, white 43%);
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-position: center;
}


#page {
 width: 95.5%;
 height: 100%;
 background-color: transparent;
 margin-right: auto;
 margin-left: auto;
}

#fußbereich {
  margin-top: 35%;
}

#meder-logo {
  position: absolute;
  top:  0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 90%;
  height: auto;
}

.copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  text-align: center;
}

/*=======================================
2. Navibereich
======================================*/

#navibereich {
  background-color: transparent;
}

.navbar {
  transition: background-color .5s;
}

.navbar.bg-light {
  background-color: #ccccccd0 !important;
}

}

/*=======================================
  Ende CSS Seite
=======================================*/