body {
    background-color: #fd92bd; /*68c5e2  4ac0e4*/
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html{
    overscroll-behavior: none;
}

::-moz-selection { /* Highlighting for Firefox */
    color: rgb(51, 42, 84);
    background: rgb(122, 138, 199);
}
  ::selection { /* Highlighting */
    color: rgb(51, 42, 84);
    background: rgb(122, 138, 199);
}

/*#region NavigationMenu*/
    #navigationWrapper {
        display: flex;
        justify-content: center;
    }
    .NavigationPic {
        display: flex;
        justify-content: flex-start;
        filter:brightness(100%)
    }
    .NavigationPic:hover {
        filter: brightness(120%);
        transform: scale(1.02);
        transition: all 0.3s ease;
        filter: drop-shadow(20px 10px 4px #611e5bbf) ;

    }
/*#endregion*/

/*#region HamburgerMenu*/
    .navmob { /* Style the navigation menu */
    overflow: hidden;
    background-color: #fd92bd;
    position: relative;
    width: 100%; 
    }
    .navmob #navigationButtons { /* Hide the links inside the navigation menu (except for logo/home) */
    display: none;
    }
    .navmob a { /* Style navigation menu links */
    color: #522B29;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .navmob a.icon { /* Style the hamburger menu */
        background-color: #fd92bd;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    }
    .navmob a:hover { /* Add a background color on mouse-over */
        background-color: #ff7db1;
    color: #522B29;
    }
    .active { /* Style the active link (or home/logo) */
        background-color: #fd92bd;
    color: white;
    }
 /*#endregion */


#headerWrapper{
    display: flex;
    justify-content: center;
    font-size: 30px;
    color: #522B29;
    margin-left: 10%;
    margin-right: 10%;
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

div.gallery-item {
  margin: 10px;
  border: 10px solid #fd92bd;
  width: 400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 7px;
  padding-top: 10px;
}

div.gallery-item:hover {
  border: 10px solid #ff7db1;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}



@media only screen and (max-width: 700px){/* show mob navi*/
    .NavigationPic{
        display: none;
    }

    #headerWrapper{
    margin-left: 30%;
    margin-right: 30%;
}
}
@media only screen and (min-width: 701px){/* hide mobile nav menu*/
    .navmob{
        display: none;
    }
    #navmob{
        display: none;
    }
    .NavigationPic{
        width: 100%;
        height: 100%;
    }
}
