﻿@charset "utf-8";
/* -----GENERAL----- */
* {
    margin: 0;
    padding: 0;
}

html { 
  background: url(/images/beach.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-size:50px;
  font-weight: bold;
}

button {
  background: none;
  border:none;
  margin:0;
  padding:0;
}

/* -----SPACING----- */
.Center {
    margin-left: auto;
    margin-right: auto;
}


/* -----NAVIGATION-----*/
    /* -Navigation Big-*/
    #NavigationBig{
      background-image: url("/images/navBig/navPillar.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: fixed;
      bottom: 0px;
      left: 30px;
      width: 650px;
      height: 700px;
    }
    .navLink {
      display: block;
      width: 90%;
      position: absolute;
    }
    .navLink :hover{
      max-width: 100%;
      max-height: 100%;
    }
    .navBigWelkom{
      transform:translateY(25px);
    }
    .navBigWelkomImg{
      max-width: 100%;
    }
    .navBigThuishaven{
      transform:translate(10px, 30px);
    }
    .navBigThuishavenImg{
      max-width: 76%;
    }
    .navBigMembers{
      transform:translate(20px, 110px);
    }
    .navBigMembersImg{
      max-width: 85%;
    }
    .navBigContact{
      transform:translate(35px, 210px);
      height: 100px;
    }
    .navBigContactImg{
      max-height: 80%;
    }
    #NavigationBig img{
      margin: 0;
    }
    .navBigUtil{
      display: block;
      position: absolute;
      transform:translate(125px, 330px);
      width: 400px;
      height: 100px;
    }
    .navBigUtilBg{
      max-width: 100%;
      max-height: 100%;
      position: absolute;
      display: block;
    }
    .navBigUtilSound{
      width: 50px;
      height: 50px;
      position: absolute;
      display: block;
      transform:translate(300px, 10px);
    }
    .navBigUtilSoundImg{
      max-height: 100%;
      max-width: 100%;
      position: absolute;
      display: block;
      top: 0px;
    }

    

    /* -Navigation Small-*/
    #NavigationSmall {
        background-color: #333;
        background-image: url("/images/NavigationBar.jpg");
        background-position: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .NavigationSmallCenter {
        width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    .NavigationSmallLeft {
        width: calc(50% - 150px);
        margin: 0 auto;
        text-align: right;
    }
    .NavigationSmallRight {
        width: calc(50% - 150px);
        margin: 0 auto;
        text-align: left;
    }
    .topnavSmall {
        color: gold;
        font-family: 'Lucida Calligraphy', cursive;
        text-shadow: 2px 2px black;
        text-align: center;
        padding: 14px 10px;
        text-decoration: none;
        font-size: 25px;
    }
    .topnavSmallHome {
        font-size: 35px;
    }
    .navSmallUtilSound {
        width: 40px;
        height: 40px;
        position: absolute;
        display: block;
        right: 10px;
        top: 17px;
    }
    #muteBtnSmall {
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        display: block;
        top: 0px;
    }
/* -----END NAVIGATION-----*/
/* -CONTENT-*/
#content {
    position: absolute;
    width: calc(100% - 740px);
    top: 50%;
    right: 30px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: calc(100% - 125px);
    overflow: auto;
    margin-top: 35px;
}
#contentHome{
    display: inline-block;
    width: 100%;
    text-align: center;
}
#contentMembers {
    display: none;
    width: 100%;
    text-align: center;
}
#contentContact {
    display: none;
    width: 100%;
    text-align: center;
}
/* -END CONTENT-*/


/* -----HOME-----*/
.wbt {
    padding-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
.sedef {
    text-align: center;
    color: #92825c;
    -webkit-text-stroke: 2px black;
}
/* -----END HOME-----*/

/* -----CONTACT-----*/
.nummerMark {
    
  font-family: "comic sans";
  font-style: italic;     
  color:#AE1C28;
  font-size:120px;
  -webkit-animation:colorchange 8s infinite;
  }
@-webkit-keyframes colorchange {
  0%   {color: #AE1C28;}
  25%  {color: #FFFFFF;}
  50%  {color: #21468B;}
  75%  {color: #FF7F00;}
  100% {color: #AE1C28;}
}
/* -----END CONTACT-----*/

.pageaudio {
    position: fixed;
    display: flex;
    justify-content: center;
    bottom: 10px;
    width: 100%;
    align-content: center;
    align-items: center;
}

/* -----MEDIA QUERRY-----*/
  /* -Navigation Switch-*/
  #NavigationBig{
    display: block;
  }
  #NavigationSmall{
    display: none;
  }

  @media screen and (max-width: 1250px) {
    #NavigationBig{
      display: none;
    }
    #NavigationSmall{
      display: flex;
    }
    /* -CONTENT SMALL-*/
        #content {
            width: calc(100% - 60px);
        }
    /* -END CONTENT SMALL-*/
  }