body {
  min-height: 100%;
}
html {
  min-height: 100%;
}
main {
  display: flex;
  flex-wrap: nowrap;
  min-height: 100vh;
  max-height: 100%;
	overflow: hidden;
}
.sidebar {
  position: fixed;
  max-height: 100vh;
}
.scrollarea {
	display: block;
	overflow-y: scroll;
	overflow-x: scroll;
	min-width: 100%;
	max-height: 100vh;
	padding-right: 5em;
	margin-left: 1em;
}
.scrollarea::-webkit-scrollbar {
    display: none;
  }
.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}
.bi {
  vertical-align: -.125em;
  pointer-events: none;
  fill: #ffffff;
}
.dropdown-toggle {
  outline: 0;
}
.nav-flush .nav-link {
  border-radius: 0;
}
.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover, .btn-toggle:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #d2f4ea;
}
.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}
.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}
.btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover, .btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.fw-semibold {
  font-weight: 600;
}
.lh-tight {
  line-height: 1.25;
}
.center {}
/* MY CSS */
img.aboutme {
  flex-shrink: 0;
	padding: 0px;
  border-radius: 100%;
	height: 350px;
	width: auto;
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
  -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
  -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}
img.aboutme:hover {
  -webkit-filter: grayscale(0%);
	
}
.content {
  width: 100%;
  margin: 0 auto;
}
.contact {
  margin: 0 auto;
  padding: 0px;
  align-content: center;
}
.about {
  width: 75%;
  margin: 5px;
  padding: 24px;
  align-content: justify;
}
.gallery {
	margin: 0 auto;
	min-width: 100%;
	padding-left: 3em;
}
.icon {
	padding-right: 15px;
	font-size: 1.2em;
}

@media (max-width: 1366px){
}

/**
 * #.# Gallery
 *
 * Bootstrap 5 Gallery with Hover-Effects:
 * - darken
 * - moving a bit
 * - show Image Title 
 * - Lightbox in this case https://biati-digital.github.io/glightbox/
 */
 

.gallery__item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s, transform 0.35s;
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
  -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
  -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}
.gallery__item img {
  width: 100%;
  max-width: 100%;
	height: 100%;
  transition: opacity 0.35s, transform 0.35s, margin 0.2s ease-in-out;
	 margin-right: 2px;
  background-color: gray;
}
.gallery__item a {
  display: flex;
  width: 100%;
  hei  position: relative;
  overflow: hidden;
-right: 2px;
    tran  transition: margin 0.2s ease-in-out;
ground-color: gray;
ckground-color: gray;

}
.gallery__item a:before {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;  opacit	
: opacity   opacity: 0;
  transition: opacity 0.4s;
	 margin-right: 2px;
  transition: margin 0.2s ease-in-out;
ckground-color: gray;
}

@media only screen and (min-width: 992px) {
  .gallery__item {
    height: 100%;
    overflow: hidden;
  }
  .gallery__item:hover {
    transform: translate3d(0, 0, 0);
    transition: opacity 0.35s, transform 0.35s;
	  -webkit-filter: grayscale(0%);
	  margin-right: 2px;
	  margin-top: -2;
	  
  }
  .gallery__item:hover a:before {
    opacity: 0.3;
  }
}

.home {
	margin-top: 8em;
}

body {
	animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
=