*
{
    margin: 0;
    padding: 0;
    /* font-family: Arial, Helvetica, sans-serif; */
}

html, body{

    height: 100%;  
    background-color: blue;
}

#brand
{
    margin: 0 1rem;
    font-size: 1.2em;
    font-weight: bold;
    color: aqua;
}

#menu
{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a0909;
    color: white;
}

#menu>ul
{
    display: flex;
    background-color: #0a0909;
    height: 100%;
}

#menu>ul>li
{
    padding: 0 1rem;
    list-style: none;
    border-bottom: 4px solid transparent;
    display: flex;
    align-items: center;
}

#menu>ul>li:hover
{
    border-color: purple;
}

#menu>ul>li>a
{
    text-decoration: none;
    font-size: 1em;
    font-family: sans-serif;
    color: white;
}

#menu>button
{
    display: none;
    justify-content: space-between;
    flex-direction: column;
    width: 30px;
    height: 23px;
    background: none;
    border: none;
    cursor: pointer;
}

#menu>button>span
{
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
}

main>header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 80px);
    background-color: black;
}
main>header>section
{
    flex-grow: 1;
    font-weight: bold;
    text-align: center;
}
header>section>h1
{
   color: darkkhaki;
   margin-bottom: 2rem;
}

main>header>section>p
{
   font-size: 2rem;
   color: bisque;
}

main>header>img
{
    min-width: 200px;
    max-height: 100%;
    margin-left: 1rem;
}

main>section
{
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main>header>section>h1
{
    margin: 2rem 0;
   
}
@media only screen and (max-width: 950px)
{
    #brand
    {
        margin-left: 1rem;
    }
    #menu>ul
    {
        position: absolute;
        display: none;
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: center;
        top: 80px;
    }
    #menu>ul.active
    {
        display: flex;
    }
    #menu>ul>li
    {
        padding: 1rem 0;
    }
    #menu>button
    {
        display: flex;
        margin-right: 1rem;
    }

    main>header
    {
        flex-direction: column;
        justify-content: space-around;
    }
    main>header>section
    {
        flex-grow: 0;
        order: 1;
    }
    main>header>img
    {
       
        max-width: 75%;
        min-height: 40%;
        margin: 0;
    }

    header>section>h1
    {
        font-size:1.2em ;
        color: darkkhaki;
        margin-bottom: 2rem;
    }

    main>header>section>p
    {
        font-size: 1.2em;
        color: bisque;
 
    }

}


/*-------------------------------------------
...............About.........................
--------------------------------------------*/


#about
{
    min-height: 100vh;
    background-color:grey;
    justify-content: flex-start;
}

#about>p{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold ;
    color: fff;
    width: 70%;
}
#about>h1{
    font-family: Arial, Helvetica, sans-serif;
    color:black;
    margin: 3rem;
}

/* flexbox specific styles*/ 
.flex-container {
    width: 80%;
    padding: 5px;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: row; /* Default  */
    gap: 1em 2em;
    justify-content: center;
 
  }
  
  .flex-item-left{
    justify-content: center;
    padding: 10px;
    font-family: sans-serif;
    font-size: 1.5em;
    color: #333;
    flex:2;
    
  }
.flex-item-left>h1{
    padding-bottom: 20px;
    font-size: 1em;
    align-content: center;
}
  .flex-item-right{
    display: flex;
    flex-direction: column;
    align-items : f;
    padding: 10px;
    font-family: sans-serif;
    font-size: 1em;
    color: #333;
    flex:1;
   
  }

  .blog-wrapper{
	padding:15px;
	display:flex;
	flex-direction:row;
	justify-content:center;
	flex-wrap:wrap;
	.blog-card{
		@include transition(.3s);
		max-width:300px;
		margin:15px;
		background:#fff;
		border:gray;
		text-align:center;
		cursor:pointer;
		&:hover{
			box-shadow: 0 3px 10px 0 rgba(0,0,0,.1);
			.card-img{
				img{
					opacity:0.8;
				}
			}
		}
		.card-img{
			position:relative;
			text-align:center;
			background: gray;
			img{
				@include transition(.3s);
				max-height:180px;
				width:100%;
				border-bottom:4px solid gray;
			}
			&:before{
				content:'';
				position: absolute;
				bottom: -8px;
				left: 50%;
				margin-left: -10px;
				width: 0;
				height: 0;
				/* border-top: solid 10px lawngreen;
				border-left: solid 10px transparent;
				border-right: solid 10px transparent; */
			}
			h1{
				position:absolute;
				margin:0;
				font-size:2em;
				bottom:15px;
				width:100%;
				color:#fff;
				font-family: Arial, Helvetica, sans-serif;
			}
		}
		.card-details{
			margin-top:30px;
			font-family: Arial, Helvetica, sans-serif;
			color:#3C3C3C;
			span{		
				padding:0 30px;
				i{
					margin-right:5px;
				}
				
			}
		}
		.card-text{
			padding:30px 15px;
			font-family: Arial, Helvetica, sans-serif;
			line-height:22px;
		}
		/* .read-more{
			@include transition(.3s);
			display:inline-block;
			width:auto;
			text-align:center;
			text-transform:uppercase;
			background:#CB6074;
			color:#fff;
			padding:15px;
			margin-bottom:30px;
			font-family: Arial, Helvetica, sans-serif;
        }
            &:hover{
				background: darken(#ab223b,20%);
			} */
		}
	}





@media (max-width: 950px) {
    .flex-item-right, .flex-item-left {
      flex: 100%;
      justify-content: center;
      font-size: 1em;
     
    }
  
    .flex-container{
        /* flex-wrap: wrap; */
        margin-bottom: 25px;
        flex-direction:column;
    }
    .flex-item-right img {
        min-width: 1px;
        min-height: 1px;
    }
}
/*-----------------------------------------
        Galerie
------------------------------------------- */

#galerie {
    background-color:rgb(56, 52, 59);
    min-height: 100vh;
    padding-bottom: 40px;
    /* justify-content: start; */
}  

#galerie>h1{
    font-family: Arial, Helvetica, sans-serif;
    color: bisque;
    font-size: 2rem;
    margin: 10px;
}


  .heading-text {
    margin: 0 0;
    padding-top: 10px;
    font-size: 2rem;
    text-align: center;
  }
  
    .image-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
       
    }
  
    .image-gallery>figure {
        margin: 0;
        flex-basis:200px;
        position: relative;
        cursor: pointer;
        
    }

     .image-gallery::after {
        flex-basis:200px;
    }
 
    .image-gallery figure img {
        object-fit: cover;
        max-width: 100%;
        height: auto;
        vertical-align: middle;
        border-radius: 5px;
    }
    figure.hidden {
        display: none;
        }

    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(57, 57, 57, 0.502);
        top: 0;
        left: 0;
        transform: scale(0);
        transition: all 0.2s 0.1s ease-in-out;
        color: #fff;
        border-radius: 5px;
        /* center overlay text */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* hover */
    .image-gallery figure:hover .overlay {
        transform: scale(1);
    }  



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


/*------------Impressum--------------------*/

#impressum
{
    background-color:rgb(61, 59, 62);
    color: #fff;
    
}

#impressum >h1{
    flex: content;
    align-items: flex-start;
    font-family: Arial, Helvetica, sans-serif;
    color: bisque;
    font-size: 1.6rem;
    margin: 30px;
}

.imp{
    width: 70%;
    
}
.imp a:link{
    color: rgb(168, 234, 234);
}

.imp a:hover{
    color: chartreuse;
}
 .imp a:visited{
    color:green ;
 }

 
#topbtn{
    display: flex;
    align-items: flex-end;
}

#topbtn>button{
    display: none;
    cursor: pointer;
    position: fixed; 
    bottom: 100px;
    right: 20px;
    z-index: 99;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(12, 12, 12);
    color: white;
    border: none;
  }

footer
{
    display: flex;
    height: 90px;
    justify-content: center;
    align-items: center;
    background-color: rgb(56, 54, 54);
    color:aliceblue;
}

