@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: 0px;
    left:0px;
    display: block;
    width: 10px;
    height: 10px;
   /* z-index: 1012;*/
    background: red;
    opacity: 0;
}

#measureB {
    position: fixed;
    bottom: 0px;
    right:0px;
    display: block;
    width: 10px;
    height: 10px;
    /*z-index: 1011;*/
    background: blue;
    opacity: 0;
}

#measureWH {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
   /* z-index: -1;*/
    background: yellow; 
    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: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    overflow:hidden;
    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, #underline, #buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* horizontal centering */
    transition: top .3s ease;
    transition: bottom .3s ease;
}

/* ------------------------------------------------------  BANNER / UNDERLINE  ----------------------------------------------------- */
#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);
}

/* ------------------------------------------------------  MENU  ----------------------------------------------------- */
#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;
}

/* ------------------------------------------------------  FILTER  ----------------------------------------------------- */
#filterContainer {
    font-family: futuraMR;
    z-index: 1000;
}
 
/* Tag buttons */
.tagButton {
    display: inline-flex;         /* allow vertical centering */
    align-items: center;          /* vertical center */
    justify-content: center;      /* horizontal center */
    font-family: futuraMR, monospace; 
    border: none;
    cursor: pointer;
    background: #0af;
    color: white;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.tagButton.selected {
    background: #fff;
    color: #0af;
}

 

 
#scrollLeft, #scrollRight {
    background: #0af;
    border: none;
    cursor: pointer;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    padding: 0;
}

#scrollLeft svg polygon, #scrollRight svg polygon {
    fill: white;  /* default triangle color */
    transition: fill 0.3s ease;
}

/* Hover effect: invert triangle color */
#scrollLeft:hover svg polygon,
#scrollRight:hover svg polygon {
    fill: #0af;
    background: #fff; /* optional if you want button bg to invert */
}


#scrollLeft, #scrollRight {
    box-sizing: border-box; /* include padding/border in width/height */
}
#scrollLeft svg, #scrollRight svg {
    display: block;          /* removes inline spacing issues */
}
/* ------------------------------------------------------  PROJECTS  ----------------------------------------------------- */

#menuTop {
    /*positions anchor, aligned to menu-top by JS*/
    position: relative;
    display: block;
    opacity: 1;
    width: 0;
    /*height: 100vh;*/
    background: magenta;
    z-index: 999;
    top: 0;
}

#menu {
    position: relative;
    top: 0;
    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;

    background:#ccc;
}

/*-----------space below the menu - reveals random link*/
#menuBottom {
    position: absolute;
    display: block;
    width: 100%; 
    background:#ccc;
    z-index: 98;

}

img {
    opacity: 0;
    transition: opacity 1s;
} 
#randomMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70vw;
  font-family: Georgia, Times, serif;
  font-style: italic;
  color: #333;
  z-index: 99;
  display:block;
}


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: 100px;
    z-index: 1000;
    background: rgba(255, 255, 255, .5);
    color: black;
    font-size: 12px;
}