@font-face {
  font-family: futuraMR;
  /*src: url(webfonts/futura-medium-r.woff) format('woff');
    font-family: 'webfontregular';*/
  src: url('webfonts/futura-medium-webfont.woff2') format('woff2'),
    url('webfonts/futura-medium-webfont.woff') format('woff');
}

html {
  scroll-behavior: smooth;
  background-color: #ccc;
  font-size: 20px; /* base font size */
}

body {
  margin: 0px;
  background-color: #ccc;
}

/* selected text*/
body ::-moz-selection {
  color: black;
  background: #ccc;
}

body ::selection {
  color: black;
  background: #ccc;
}

#w100p {
  margin: 0px;
  padding: 0px;
  width: 100%;
  background: red;
  opacity: 0;
}

#measureR {
  position: fixed;
  top: 10px;
  display: block;
  width: 40px;
  height: 40px;
  /*  z-index: 1010;*/
  background: red;
  transform: rotate(45deg);
  opacity: 0;
}

#measureB {
  position: fixed;
  top: 10px;
  display: block;
  width: 40px;
  height: 40px;
  /*  z-index: 1011;*/
  background: blue;
  transform: rotate(45deg);
  opacity: 0;
}

#top {
  position: absolute;
  left: 0px;
  top: 0px;
}

#fadeScrollContainer {
  position: fixed;
  margin: 0px;
  padding: 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  overflow: hidden;
}

#videoContainer {
  position: fixed;
  transition: opacity 1s;
  opacity: 0;
  display: block;
  padding: 0px;
  margin: 0px;
  background: #ccc;
}

 
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around; /* spreads children vertically */
  align-items: center; /* keeps them horizontally centered */
  background-color: rgba(0,0,0,0);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 1s;
}


#banner {
  font-family: futuraMR;
  font-weight: normal !important;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}


#underline {
   font-family: futuraMR;
  font-weight: normal !important;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

 
#buttons {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: futuraMR; 
  background-color: rgba(0,0,0,0);
}
 
#buttons a{
  padding: 5px;
  background: #0af;
  outline: 0;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  text-shadow:1px 1px 2px rgba(0,0,0,0.3);
  text-decoration: none;
  color:#fff;
  transition: all .3s;

}

#buttons a:hover{
  background: #fff;
  color:#0af;
  border:solid 5px #0af;
}
 
 
/* ------------------------------------------------------  PROJECTS  ----------------------------------------------------- */

 
#menuTop {
  /*positions anchor, aligned to menu-top by JS*/
  position: absolute;
  display: block;
  opacity: 0;
  width: 100px;
  height: 100px;
  background: magenta;

  /*  z-index:103;*/
}

#menu {
  position: absolute;
  z-index: 100;
  display: block;
  width: 100%;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cccccc+0,cccccc+100&0+0,1+27 */
  background: -moz-linear-gradient(top, rgba(204, 204, 204, 0) 0%, rgba(204, 204, 204, 1) 27%, rgba(204, 204, 204, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(204, 204, 204, 0) 0%, rgba(204, 204, 204, 1) 27%, rgba(204, 204, 204, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(204, 204, 204, 0) 0%, rgba(204, 204, 204, 1) 27%, rgba(204, 204, 204, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00cccccc', endColorstr='#cccccc', GradientType=0);
  /* IE6-9 */

  left: 0px;
}

 

/*-----------space below the menu - reveals footer*/
#menuBottom {
  position: absolute;
  display: block;
  width: 100%;
}

img {
  opacity: 0;
  transition: opacity 1s;
}

#footerWrap {
    position: fixed;
  top: 0;          /* stick to top of viewport */
  left: 0;
  width: 100%;    /* full width of viewport */
  height: 100vh;   /* full height of viewport */
  display: flex;   /* enable flexbox */
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  z-index: 3;
  display: none;
}

#footer { 
  font-family: Georgia, Times, serif;
  color: #444;
  z-index: 4;
  text-align: center;
}


 
 


a:link {
  /* unvisited link */
  color: #444;
}

a:visited {
  /* visited link */
  color: #444;
}

a:hover {
  /* mouse over link */
  color: #444;
}

a:active {
  /* selected link */
  color: #444;
}

#debug {
  position: fixed;
  left: 5px;
  top: 5px;
  z-index: 1000;
  background: rgba(255, 255, 255, .5);
  color: black;
  font-size: 12px;
}

