body{
    background-color: #7e999c;
    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:  #e6e8e9;
    background: #6e888b;
}
  ::selection { /* Highlighting */
    color:  #e6e8e9;
    background: #6e888b;
}

/*#region NavigationMenu*/
#navigationWrapper {
    display: flex;
    justify-content: center;
    background-color: #dce3e4;
}
.NavigationPic {
    display: flex;
    justify-content: flex-start;
    filter:brightness(110%)
}
.NavigationPic:hover {
    filter: brightness(80%);
    transform: scale(1.02);
    filter: drop-shadow(20px 10px 4px #1e4961) ;
    transition: all 0.3s ease;
}
/*#endregion*/

/*#region HamburgerMenu*/
    .navmob { /* Style the navigation menu */
        overflow: hidden;
        background-color: #dce3e4;
        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: #3b5458;
        padding: 20px 30px;
        text-decoration: none;
        font-size: 17px;
        display: block;
    }
    .navmob a.icon { /* Style the hamburger menu */
        background-color: #dce3e4;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }
    .navmob a:hover { /* Add a background color on mouse-over */
        background-color:#dce3e4;
        color: rgb(0, 0, 0);
    }
    .active { /* Style the active link (or home/logo) */
        background-color: #97b2b5;
        color: white;
    }
/*#endregion */

#transitionIMG {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

#headerWrapper{
    display: flex;
    justify-content: center;
    font-size: 60;
    color: #3b5458;
    background-color: #c7cfd0;
}

#artFlowerGif{
    display: flex;
    justify-content: center;
    background-color: #acc4c7;
    color: #3b5458;
}

/*#region artblock 1*/
#artShowcase{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #acc4c7;
    color: #3b5458;
}
#artShowcaseTitle{
    display: flex;
    justify-content: center;
    background-color: #acc4c7;
    color: #3b5458;
    font-size: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}
#artShowcasePhysical{
    display: flex;
    justify-content: center;
    background-color: #acc4c7;
    color: #3b5458;
    margin-right: 50px;
    margin-left: 50px;
    margin-bottom: 30px;
}
#artShowcase3D{
    display: flex;
    justify-content: center;
    background-color: #acc4c7;
    color: #3b5458;
    margin-right: 50px;
    margin-left: 50px;
    margin-bottom: 30px;
}
/*#endregion*/

/*#region artblock 2*/
#artShowcase2{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #97b2b5;
    color: #3b5458;
}
#artShowcaseTitle2{
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: #3b5458;
    background-color: #97b2b5;
    margin-top: 60px;
    margin-bottom: 60px;
}
#artShowcasePixel{
    flex-wrap:wrap;
    justify-content: center;
    flex-direction: row;
    background-color: #97b2b5;
    color: #3b5458;
    margin-left: 15%;
    margin-right: 15%;
}
#artChoreophobiaImg{
    flex-wrap:wrap;
    justify-content: center;
    flex-direction: row;
    margin-left: 15%;
    margin-right: 15%;
}

.borders{
    background-color: rgba(113, 133, 137, 0.523);
    padding: 20px;
    border-top: 10px solid #8da7a9;
    border-left: 10px solid #8da7a9;
    border-bottom: 10px solid #697c7e;
    border-right: 10px solid #697c7e;

    margin-top: 50px;
    margin-left: 50px;
}
.borders:hover{
    background-color: rgba(113, 133, 137, 0.777);
    border-top: 10px solid #697c7e;
    border-left: 10px solid #697c7e;
    border-bottom: 10px solid #8da7a9;
    border-right: 10px solid #8da7a9;
}
/*#endregion*/

/*#region @media*/
@media only screen and (max-width: 700px){/*mobile navigation*/
    .NavigationPic{
        display: none;
    }
}

@media only screen and (min-width: 701px){/*pc navigation*/
    .navmob{
        display: none;
    }
    #navmob{
        display: none;
    }
        .NavigationPic{
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-width: 1100px){/*pc navigation*/
    #artShowcasePixel{
        margin-left: 5%;
        margin-right: 5%;
        justify-content: center;
        flex-direction: column;
    }
    #artChoreophobiaImg{
        margin-left: 5%;
        margin-right: 5%;
        justify-content: center;
        flex-direction: column;
    }
}
 /*#endregion*/

