/*----------------------------------screen size min 600px - desktop version ---------------------------*/
@media screen and (min-width: 600px){

  @font-face {
    font-family: HalenoirBold;
    src: url(fonts/HalenoirExpanded-Bold.otf);
  }

  @font-face {
    font-family: HalenoirReg;
    src: url(fonts/HalenoirCompact-Regular.otf);
  }

  body {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: rgb(66,66,66);
  }

  .headerContainer {
    position: fixed;
    top: 0px;
    width: 100%;
    padding-top: 10px;
  } 

  #mainTitleOne {
    display: inline;
    padding-left: 20px;  
    font-family: HalenoirReg;
    font-size: 40px;
    color: lightgrey;
  }

  #mainTitleTwo {
    margin-left: -10px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 40px;
    color: lightgrey;
  }
  #mainTitleThree {
    margin-left: 0px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 40px;
    color: white;
  }

  #mainTitleFour {
    padding-right: 20px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 40px;
    color: lightgrey;
  }

  .navbar {
    position: fixed;
    display: flex;
    text-align: center;
    top: 74px;
    width: 100%;
    padding-left:0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    background: rgba(0,0,0,0.5);
  }

  #navbarItem {
    width: 12.5%;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 5px;
    text-decoration: none;
    font-family: HalenoirReg;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
  }

  #activePage {
    width: 12.5%;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 5px;
    text-decoration: none;
    font-family: HalenoirReg;
    font-size: 18px;
    color: rgba(255,255,255,1);
    background: rgba(0,0,0);
  }

  .navbarBottom {
    position: fixed;
    display: flex;
    text-align: center;
    bottom: 65px;
    width: 100%;
    height: 30px;
    background: rgba(0,0,0,0.6);
    z-index: 1;
  }

  .navbarBottomText {
    text-align: left;
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 5px;
    text-decoration: none;
    font-family: HalenoirReg;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
  }

  a:hover#navbarItem {
    color: white;
    background: red;
  }

  .footerContainer {
    position: fixed;
    width: 100%;
    display: inline;
    bottom: 0;
    text-align: right;
    margin-bottom: 10px;
  }

   /* Style The Dropdown Button */
  .dropbtn {
    text-align: center;
    padding-top: 2px;
    padding-bottom: 7px;
    text-decoration: none;
    font-family: HalenoirReg;
    font-size: 18px;
    color: rgba(255,255,255,1);
    cursor: pointer;
  }

  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    width: 12.5%;
    padding-top: 2px;
    background: black;
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    margin-top: 5px;
    position: absolute;
    background-color: black;
    min-width: 220px;
    text-align: left;
    z-index: 1;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
    color: white;
    padding: 10px 6px 6px 10px;
    font-family: HalenoirReg;
    font-size: 18px;
    text-decoration: none;
    display: block;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: darkgrey;
  }

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

}

/*----------------------------------screen size MAX 600px - Phone version ---------------------------*/
@media screen and (max-width: 600px){

  @font-face {
    font-family: HalenoirBold;
    src: url(fonts/HalenoirExpanded-Bold.otf);
  }

  @font-face {
    font-family: HalenoirReg;
    src: url(fonts/HalenoirCompact-Regular.otf);
  }

  body {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: rgb(66,66,66);
  }

  .headerContainer {
    position: fixed;
    top: 0px;
    width: 100%;
    padding-top: 15px;
    text-align: center;
  } 

  #mainTitleOne {
    display: inline;
    padding-left: 0px;   
    font-family: HalenoirReg;
    font-size: 30px;
    color: lightgrey;
  }

  #mainTitleTwo {
    margin-left: -6px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 30px;
    color: lightgrey;
  }

  #mainTitleThree {
    margin-left: 0px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 30px;
    color: white;
  }

  #mainTitleFour {
    padding-right: 20px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 30px;
    color: lightgrey;
  }

  .navbar {
    position: fixed;
    display: flex;
    text-align: center;
    top: 70px;
    width: 100%;
    padding-left:0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  #navbarItem, #activePage {
    display: none;
  }
   .navbarBottom {
    position: fixed;
    display: flex;
    text-align: center;
    bottom: 55px;
    width: 100%;
    height: 30px;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  .navbarBottomText {
    text-align: left;
    padding-left: 20px;
    padding-top: 6px;
    padding-bottom: 5px;
    text-decoration: none;
    font-family: HalenoirReg;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
  }

  .footerContainer {
    position: fixed;
    width: 100%;
    display: inline;
    bottom: 0;
    text-align: right;
    margin-bottom: 10px;
  }
}

/*----------------------------------screen size max 400px - old phone version ---------------------------*/
@media screen and (max-width: 400px){
 .headerContainer {
    position: fixed;
    top: 0px;
    width: 100%;
    padding-top: 15px;
    text-align: center;
  } 

  #mainTitleOne {
    display: inline;
    padding-left: 0px;   
    font-family: HalenoirReg;
    font-size: 20px;
    color: lightgrey;
  }

  #mainTitleTwo {
    margin-left: -6px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 20px;
    color: lightgrey;
  }

  #mainTitleThree {
    margin-left: 0px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 20px;
    color: white;
  }

  #mainTitleFour {
    padding-right: 20px;
    display: inline;
    font-family: HalenoirBold;
    font-size: 20px;
    color: lightgrey;
  }

  .navbarBottom {
    position: fixed;
    display: flex;
    text-align: center;
    bottom: 45px;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  .navbarBottomText {
    text-align: left;
    padding-left: 10px;
    padding-top: 8px;
    text-decoration: none;
    font-family: HalenoirReg;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
  }
}
