body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 75%;
    margin: auto;
}

.bodywrapper{
    background-color: inherit;
    min-width: 75%;
}

header{
    padding: 1%;
    display: flex;
    flex-direction: column;
    font-size: larger;
    border-bottom: 1px solid white;
}

nav{
    width: 100%;
}

nav a {
    padding: 1%;
    color: white;
    text-transform: uppercase;
    font-style: italic;
}

nav a:hover{
    color: blue;
    background-color: white;
    transition: 0.2s;
}

.nav_a_active{
    background-color: black;
    filter: invert();
}

main{
    display: flex;
    flex-direction: column;
    text-align: center;
}


/********** PAGE **********/

.mainWrapper{
    display: flex;
    flex-direction: column;
    /*padding-top: 1em;*/
}

.showcase_page{
    transform: rotate(-1deg);
    background-color: #004552;
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    font-size: larger;
    color: #fff300;
    text-shadow: 2px 2px 0px black;
    padding-bottom: 8%;
}

.splash{
    margin: 5%;
}
.splash h1{
    font-size: large;
    font-style: oblique;
    margin: 1%;
}
.splash img{
    width: 60%;
    max-width: 75%;
}

span a{
    color: yellow;
    font-style: oblique;
}

.showcase_info{
    padding-left: 8%;
    padding-right: 8%;
    text-align: justify;
}

.overlay{
    background-image: url("../img/decoration/poster_noise.jpg");
    z-index: -1;
    position: absolute;
    background-repeat: round;
    mix-blend-mode: color-dodge;
    width: 100%;
    height: 100%;
}

ul {
    list-style:circle;
  }

.showcase_contact{
    padding-top: 1%;
    text-align: left;
    padding-left: 8%;
    padding-right: 8%;
}


/********** FOOTER **********/



@media (max-width: 800px){
    body {
        max-width: 98%;
    }

    .mainWrapper{
        flex-direction: column;
    }
}
