html, body {
    position:relative;
  }

html {
    background-color: black;
}

body{
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;

}

#bar{
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 3;
}

.flexbox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}


.bgLayer{
    position: absolute;
    z-index: -1;
}

.baseParent{
    position: absolute;
    z-index: 0;
}

.baseFront{
    position: absolute;
    z-index: 1;
}


img {
    height: 96vh;
}

#bg {
    position: absolute;
    ;
}


#b {
    position: relative;
    float:left;
}

#f {
    position: relative;
}


#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
  }
  
  #overlayTitle{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }



  button {
    appearance: button;
    background-color: #000;
    background-image: none;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: #fff 4px 4px 0 0,#000 4px 4px 0 1px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: ITCAvantGardeStd-Bk,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 5px 10px 0;
    overflow: visible;
    padding: 12px 20px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
  }
  
  button:focus {
    text-decoration: none;
  }
  
  button:hover {
    text-decoration: none;
  }
  
  button:active {
    box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
    outline: 0;
  }
  
  button:not([disabled]):active {
    box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
    transform: translate(2px, 2px);
  }
  
  @media (min-width: 768px) {
    button {
      padding: 12px 50px;
    }
  }
