/* 
COLOR PALETTE
black           rgb(0 0 0)
dark red        rgb(52 1 0)
saturated red   rgb(123 0 2)
blue-grey       rgb(107 139 186)
dark blue-grey  rgb(22 39 80)
light blue grey rgb(150 222 232)
white           rgb(255 255 255)
*/
/* GLOBAL STYLES
-------------------------------------------*/
/* https://www.paulirish.com/2012/box-sizing-border-box-ftw */
html {
    box-sizing: border-box;
    font-size: 62.5%; /*setting default to 10px*/
    background-color: #000000;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background-color: #000000;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}
@media screen and (min-width: 1201px) {
body {
    background:url(../images/bg.jpg);
        background-position:center;
    background-size:cover;
    background-repeat: repeat-x;
}
}
@media screen and (max-width: 360px) and (min-width: 601px) {
body {
    background:url(../images/bg-500.jpg);
        background-position:center;
    background-size:cover;
    background-repeat: repeat-x;
}
}
@media screen and (max-width: 600px) {
body {
    background:url(../images/bg-900.jpg);
        background-position:center;
    background-size:cover;
    background-repeat: repeat-x;
}
}
@media screen and (max-width: 1200px) {
body {
    background:url(../images/bg-1500.jpg);
        background-position:center;
    background-size:cover;
    background-repeat: repeat-x;
}
}
html, body {
    height: 99%;
}
@media screen and (max-width:700px){
    body {
        font: size 1.7rem;
        line-height: 2.9rem;
    }
}
p {
    padding: .5em 0;
}
/*link styles*/
a {
   color: rgb(150 222 232);
   text-decoration: none;
}
a:hover {
    color: rgb(107 139 186);
}
footer a {
    color: rgb(107 139 186);
}
footer a:hover {
    color: rgb(150 222 232);
}
/* HEADER --------------------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Mono", monospace;
}
h1 {
    font-size: 4rem;
    margin: 0px 15px 15px 15px;
    color: rgb(255 255 255);
    display: block;
    z-index: 99;
    padding-top: 8px;
}
h1 a {
    color: rgb(255 255 255)
}
h1 a:hover {
    color: rgb(255 255 255)
}
@media screen and (max-width: 700px){
    h1 {
        font-size: 3rem;
        margin: 0px 5px 10px 5px;
        color: rgb(255 255 255)
}
@media screen and (max-width: 500px){
    h1 {
        position: fixed;
        margin: 0;
        top: 0;
        background-color: #000000;
        width: 100%;
        padding-top: 10px;
        padding-left: 20px;
        padding-bottom: 15px;
        box-shadow: 0px 0px 16px 0px rgb(0 0 0);
    }
}
}
@media screen and (max-width: 375px){
    h1 {
        font-size: 2rem;
    }
}
h2 {
    font-size: 2rem;
    margin: 10px 0;
}
@media screen and (max-width: 800px){
h2 {
    font-size: 1.5rem;
}
}
h3 {
    font-size: 2rem;
    margin-bottom: .7em;
}
h4 {
    font-size: 1.8rem;
    margin-top: 2.5em;
}
h5 {
    font-size: 1.7rem;
    margin-top: 1.5em;
}
/* NAVIGATION MENU --------------------------------------------------------------------------------------*/
.navMenu {
    position: fixed;
    top: 60px;
    left: 5px;
}
.mainNav {
    display:inline-block;
    list-style-type: none;
    font-size: 1.8rem;
    margin-left: 10px;
    color: rgb(107 139 186);
}
.subNav {
    display:inline-block;
    list-style-type: none; 
    font-size: 1.8rem;
    margin-left: 25px;
}
.navMenu li {
    background-color: rgb(0 0 0 / 0.8);
    padding: 5px 10px;
    list-style-type: none;
}
.navMenu li:hover {
    background-color: rgb(0 0 0 / 1);
}
.navMenu ul {
    padding: 0;
}
.navMenu .activeNav {
    background-color: rgb(123 0 2 / 0.9);
    color: white;
}
.navMenu .activeNav:hover {
    background-color: rgb(123 0 2 / 1);
}
@media screen and (max-width: 1060px) {
.navMenu {
    top: 60px;
    left: 2px;
}
.mainNav {
    font-size: 1.2rem;
    margin-left: 3px;
}
.subNav {
    font-size: 1.2rem;
    margin-left: 10px;
}
}
@media screen and (max-width: 500px){
    .navMenu {
    display: none;
}
}
@media screen and (max-width: 500px){
.mobileMenuButton {
    position: fixed;
    font-size: 2rem;
    margin:0;
    color: white;
    padding:0 5px;
    right: 25px;
    top: 7px;
    background-color: rgb(52 1 0);
    line-height: 3.8rem;
    border-radius: 4px;
    z-index: 99;
    border: 0;
    cursor: pointer;
    display:block;
}

}
@media screen and (min-width: 501px){
.mobileMenuButton {
    display:none;
}
}
/* LANDSCAPE MODE----------------------------------------------------------- */
@media screen and (orientation: landscape) and (pointer: coarse)  {
.mobileMenuButton {
    position: fixed;
    font-size: 2rem;
    margin:0;
    color: white;
    padding:0 5px;
    right: 25px;
    top: 7px;
    background-color: rgb(52 1 0);
    line-height: 3.8rem;
    border-radius: 4px;
    z-index: 99;
    border: 0;
    cursor: pointer;
    display:block;
}
.navDesktop {
    display:none;
}
}

.dropbtn {
  background-color:rgb(52 1 0);
  color: white;
  padding: 0px 10px;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: rgb(52 1 0);
}

.mobileMenu {
    margin: 0;
}
.mobileMenu {
  display: none;
  position: fixed;
  background-color: rgb(0 0 0);
  overflow: auto;
  box-shadow: 0px 0px 10px 10px rgb(0 0 0);
  z-index: 1;
  top: 40px;
  right:0;
  padding:0;
}
@media screen and (orientation: landscape) and (pointer: coarse)  {
.mobileMenu {
  display: none;
  position: fixed;
  background-color: rgb(0 0 0);
  overflow: auto;
  box-shadow: 0px 0px 10px 10px rgb(0 0 0);
  z-index: 1;
  top: 40px;
  right:0;
  padding:0;
  font: 1rem;
}
}
.mobileMenu ul {
    padding: 0;
}
.mobileMenu a {
  color: white;
  padding: 10px 15px 10px 15px;
  text-decoration: none;
  display: block;
}
@media screen and (orientation: landscape) and (pointer: coarse) {
    .mobileMenu a {
  color: white;
  padding: 3px;
  text-decoration: none;
  display: block;
}
.imageMenuLink {
    display: none;
 }
}
.mobileMenu li {
    list-style-type: none;
}

.mobileMenu a:hover {background-color: rgb(22 39 80);}

/* SHOW MOBILE MENU */
.show {
    display: block;
}



/* MAIN ----------------------------------------------------------------------------------------------------*/
main {
       max-width: 80%;
       margin-left: 20%;
       margin-right: 5%;
       margin-bottom: -10;
       padding: 0;
       border-radius: 5px;
}
@media screen and (max-width: 500px){
    main {
       max-width: 95%;
       margin-top: 50px;
       margin-left: 2%;
       margin-right: 2%;
       margin-bottom: -10;
       padding: 5px 10px;
       border-radius: 5px;
       z-index: 1;
}
}
@media screen and (max-width: 700px) and (min-width: 501px){
    main {
       max-width: 80%;
       margin-left: 30%;
}
}
@media screen and (min-width: 1500px){
    main {
       max-width: 90%;
       margin-left: 15%;
}
}
/* LANDSCAPE MODE----------------------------------------------------------- */
@media screen and (orientation: landscape) and (pointer: coarse)  {
        main {
       max-width: 95%;
       margin-top: 20px;
       margin-left: 2%;
       margin-right: 2%;
       margin-bottom: -10;
       padding: 5px 10px;
       border-radius: 5px;
       z-index: 1;
}
        p {
            padding: 0 30px;
        }
        .centerImage {
            padding: 25px;
        }
}
main a {
    color: rgb(123 0 2);
}
main a:hover {
    color: rgb(52 1 0);
}
main h3 {
    margin-top: 50px;
}
main li {
        list-style-type: none;
        margin-bottom: 1.5em;
}
main .firstH {
        margin-top: 0;
}
main ul {
margin-top: 5px;
}
@media screen and (max-width: 500px) {
blockquote {
    margin-left: 13px;
    margin-right: 13px;
}
}
/* MAIN CONTENT WRAPPER */
.mainContent {
    background-color: rgb(200 200 200 / 0.85);
    padding: 5px 50px 30px 50px;
    margin: 0;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
}
@media screen and (max-width: 500px){
.mainContent {
    padding: 0px 50px;
} 
@media screen and (max-width: 500px){
.mainContent p {
    margin: 0 -30px;
} 
}
}
@media screen and (max-width: 800px) and (min-width: 501px){
.mainContent {
    padding: 5px 20px 10px 20px;
} 
}
.captionCenter {
    text-align: center;
}
/* MAIN IMAGES -------------------------------------------------------------------------------------------------*/
.centerImage {
    display:flex;
    align-items: center;
    justify-content: center;
}
.centerImage img {
    width: 50%;
}
@media screen and (max-width: 800px){
.centerImage img {
    width: 100%;
} 
}
@media screen and (min-width: 801px) and (max-width:1200px){
.centerImage img {
    width: 100%;
} 
}
.threeImageGrid {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    gap: 7px;
}

.threeImageGrid img {
    width: 100%;
}
@media screen and (max-width: 900px){
.threeImageGrid {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 7px;
}
} 
@media screen and (max-width: 700px){
.threeImageGrid {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    gap: 7px;
}
} 
/* IFRAMES -----------------------------------------------------------------------------------------------------*/
iframe {
    overflow: hidden;
}

/* MAIN PROJECT NAVIGATION ---------------------------------------------------------------------------------*/
.mainProjectGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 40px;
}
@media screen and (orientation: landscape) and (pointer: coarse)  {
.mainProjectGrid {
    grid-auto-rows: 200px;
    gap: 50px;
}
}
.mainProjectGrid nav {
    background-color: black;
    color: white;
    text-align: center;
    height:100%;
    margin-bottom:10px 0px;
}
@media screen and (max-width: 1100px) and (min-width: 701px){
    .mainProjectGrid {
    grid-template-columns: repeat(2, 1fr);
}
.mainProjectGrid nav {
    grid-auto-rows: 150px;
    gap: 20px;
}
}
@media screen and (max-width: 700px){
    .mainProjectGrid {
    grid-template-columns: repeat(1, 1fr);
    margin:5px;
    grid-auto-rows: 200px;
}
}
/* PROJECT NAVIGATION ------------------------------------------------------------------------------------------*/
.projectInfo{
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}
.projectInfo h2 {
    background-color: rgb(0 0 0 / 0.5);
    width: 100%;
    font-size: 1.8rem;
    padding-left: 10px;
    padding-right: 10px;
}
@media screen and (max-width: 1100px) and (min-width: 701px) {
.projectInfo h2 {
    width: 100%;
    font-size: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
}
}
@media screen and (max-width: 700px){
.projectInfo h2 {
    width: 100%;
    font-size: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
}
}
.projectInfo p {
    background-color: rgb(0 0 0 / 0.5);
    font-size: 2.2rem;
    width: 100%;
}
@media screen and (max-width: 700px){
.projectInfo p {
    background-color: rgb(0 0 0 / 0.5);
    font-size: 2rem;
    width: 100%;
}
}
.projectInfo:hover h2 {
    background-color: rgb(0 0 0 / 0.8);
}
.projectInfo:hover p {
    background-color: rgb(0 0 0 / 0.8);
}






/* PROJECT NAV BACKGROUND IMAGES----------------------------------------------------------------------------*/
/* ---------------------------------------------------------------Realtime projects*/
@media screen and (min-width: 2001px) {
.projectcrtflux{
    background:url(../images/projectgrid-crtfluxphaser-1500.jpg);
    background-position:center;
    background-size:cover;
}
.projectrgbvgavolt{
    background:url(../images/projectgrid-rgbvgavolt-1500.jpg);
    background-position:center;
    background-size:cover;
}
.projectcontrolsignals{
    background:url(../images/projectgrid-control-signals-1500.jpg);
    background-position:center;
    background-size:cover;
}
.projectcrackedraytube{
    background:url(../images/projectgrid-crackedraytube-900.jpg);
    background-position:center;
    background-size:cover;
}
/* -------------------------------------------------------------------Video projects*/
 .projectcathoderay{
     background:url(../images/projectgrid-cathode-ray-algorithms-1500.jpg);
     background-position:center;
     background-size:cover;
}
.projecteightminute{
    background:url(../images/projectgrid-eight-minute-romp-1500.jpg);
    background-position:left;
    background-size:cover;
}
.projectphasing{
    background:url(../images/projectgrid-phasing-the-electromagnetic-flux-1500.jpg);
    background-position:right;
    background-size:cover;
}
.projectromp{
    background:url(../images/projectgrid-2019-romp-thorugh-the-sandin-image-processor-1500.jpg);
    background-position:center;
    background-size:cover;
}
.projectaestheticcatharsis{
    background:url(../images/projectgrid-aesthetic-catharsis-1500.jpg);
    background-position:center;
    background-size:cover;
}
.projectreflectionson{
    background:url(../images/projectgrid-reflections-on-a-broken-mirror.png);
    background-position:center;
    background-size:cover;
}
.projectuniversalcodec{
    background:url(../images/projectgrid-universal-codec-error.jpg);
    background-position:center;
    background-size:cover;
}
.projectolympicbid{
    background:url(../images/documentary-video-of-chicagos-2016-olympic-bid-01.png);
    background-position:center;
    background-size:cover;
}
.projectvideoshorts{
    background:url(../images/projectgrid-vide-shorts.png);
    background-position:center;
    background-size:cover;
}
/* -------------------------------------------------------------------------Image projects */
.projectcrtfluxface{
     background:url(../images/projectgrid-crt-flux-phaser-face-mounted-prints-1500.jpg);
     background-position:center;
     background-size:cover;
}
.projectcrtfluxstills{
     background:url(../images/projectgrid-crt-flux-phaser-stills-1500.jpg);
     background-position:center;
     background-size:cover;
}
.projectrgbvgavoltstills{
     background:url(../images/rgbvgavoltstills/RGB-VGA-VOLT_640-05.jpg);
     background-position:center;
     background-size:cover;
}
.projectripcrt{
     background:url(../images/projectgrid-rip-crt.jpg);
     background-position:bottom;
     background-size:cover;
}
.projectvgasynthstills{
     background:url(../images/projectgrid-vga-stills.jpg);
     background-position:center;
     background-size:cover;
}
/* -------------------------------------------------------------------------Texts talks */
.projectsandincate{
     background:url(../images/projectgrid-sandin-cate.jpg);
     background-position:bottom;
     background-size:cover;
}
.projectvga{
     background:url(../images/projectgrid-control-signals-workshop-1500.jpg);
     background-position:top;
     background-size:cover;
}
.projectnunolecture{
     background:url(../images/uno-music-technology-guest-lecturer-james-connolly.png);
     background-position:top;
     background-size:cover;
}
.projectneulithium{
     background:url(../images/crt-flux-phaser-face-chicago-1500.jpg);
     background-position:top;
     background-size:cover;
}
.projecthahs{
     background:url(../images/projectgrid-hahs-rbsc-1500jpg.jpg);
     background-position:top;
     background-size:cover;
}
.projectewaste{
     background:url(../images/projectgrid-ewaste.jpg);
     background-position:top;
     background-size:cover;
}
.projectglitchtalk{
     background:url(../images/projectgrid-glitch-talk-1500.jpg);
     background-position:center;
     background-size:cover;
}
.projectsaicsound{
     background:url(../images/projectgrid-saic-sound.jpg);
     background-position:center;
     background-size:cover;
}
.projectsandindocs{
     background:url(../images/projectgrid-sandin-ip-documentation-1500.jpg);
     background-position:center;
     background-size:cover;
}
.projectleonardo{
     background:url(../images/projectgrid-crackedraytube-900.jpg);
     background-position:center;
     background-size:cover;
}
/* -------------------------------------------------------------------------EXHIBITIONS */
.projectcontrolsignalsexhibition{
     background:url(../images/control-signals-installation-james-connolly-1500.jpg);
     background-position:bottom;
     background-size:cover;
}
}









@media screen and (min-width: 601px) and (max-width: 2000px) {
.projectcrtflux{
    background:url(../images/projectgrid-crtfluxphaser-900.jpg);
    background-position:center;
    background-size:cover;
}
.projectrgbvgavolt{
    background:url(../images/projectgrid-rgbvgavolt-900.jpg);
    background-position:center;
    background-size:cover;
}
.projectcontrolsignals{
    background:url(../images/projectgrid-control-signals-900.jpg);
    background-position:center;
    background-size:cover;
}
.projectcrackedraytube{
    background:url(../images/projectgrid-crackedraytube-900.jpg);
    background-position:center;
    background-size:cover;
}
/* -------------------------------------------------------------------Video projects*/
 .projectcathoderay{
     background:url(../images/projectgrid-cathode-ray-algorithms-900.jpg);
     background-position:center;
     background-size:cover;
}
.projecteightminute{
    background:url(../images/projectgrid-eight-minute-romp-900.jpg);
    background-position:left;
    background-size:cover;
}
.projectphasing{
    background:url(../images/projectgrid-phasing-the-electromagnetic-flux-900.jpg);
    background-position:right;
    background-size:cover;
}
.projectromp{
    background:url(../images/projectgrid-2019-romp-thorugh-the-sandin-image-processor-900.jpg);
    background-position:center;
    background-size:cover;
}
.projectaestheticcatharsis{
    background:url(../images/projectgrid-aesthetic-catharsis-900.jpg);
    background-position:center;
    background-size:cover;
}
.projectreflectionson{
    background:url(../images/projectgrid-reflections-on-a-broken-mirror.png);
    background-position:center;
    background-size:cover;
}
.projectuniversalcodec{
    background:url(../images/projectgrid-universal-codec-error.jpg);
    background-position:center;
    background-size:cover;
}
.projectolympicbid{
    background:url(../images/documentary-video-of-chicagos-2016-olympic-bid-01.png);
    background-position:center;
    background-size:cover;
}
.projectvideoshorts{
    background:url(../images/projectgrid-vide-shorts.png);
    background-position:center;
    background-size:cover;
}
/* -------------------------------------------------------------------------Image projects */
.projectcrtfluxface{
     background:url(../images/projectgrid-crt-flux-phaser-face-mounted-prints-900.jpg);
     background-position:center;
     background-size:cover;
}
.projectcrtfluxstills{
     background:url(../images/projectgrid-crt-flux-phaser-stills-900.jpg);
     background-position:center;
     background-size:cover;
}
.projectrgbvgavoltstills{
     background:url(../images/rgbvgavoltstills/RGB-VGA-VOLT_640-05.jpg);
     background-position:center;
     background-size:cover;
}
.projectripcrt{
     background:url(../images/projectgrid-rip-crt.jpg);
     background-position:bottom;
     background-size:cover;
}
.projectvgasynthstills{
     background:url(../images/projectgrid-vga-stills.jpg);
     background-position:center;
     background-size:cover;
}
/* -------------------------------------------------------------------------Texts talks */
.projectsandincate{
     background:url(../images/projectgrid-sandin-cate.jpg);
     background-position:bottom;
     background-size:cover;
}
.projectvga{
     background:url(../images/projectgrid-control-signals-workshop-900.jpg);
     background-position:top;
     background-size:cover;
}
.projectnunolecture{
     background:url(../images/uno-music-technology-guest-lecturer-james-connolly.png);
     background-position:top;
     background-size:cover;
}
.projectneulithium{
     background:url(../images/crt-flux-phaser-face-chicago-900.jpg);
     background-position:top;
     background-size:cover;
}
.projecthahs{
     background:url(../images/projectgrid-hahs-rbsc-900.jpg);
     background-position:top;
     background-size:cover;
}
.projectewaste{
     background:url(../images/projectgrid-ewaste.jpg);
     background-position:top;
     background-size:cover;
}
.projectglitchtalk{
     background:url(../images/projectgrid-glitch-talk-900.jpg);
     background-position:center;
     background-size:cover;
}
.projectsaicsound{
     background:url(../images/projectgrid-saic-sound.jpg);
     background-position:center;
     background-size:cover;
}
.projectsandindocs{
     background:url(../images/projectgrid-sandin-ip-documentation-900.jpg);
     background-position:center;
     background-size:cover;
}
.projectleonardo{
     background:url(../images/projectgrid-crackedraytube-900.jpg);
     background-position:center;
     background-size:cover;
}
/* -------------------------------------------------------------------------EXHIBITIONS */
.projectcontrolsignalsexhibition{
     background:url(../images/control-signals-installation-james-connolly-900.jpg);
     background-position:bottom;
     background-size:cover;
}
}


















@media screen and (max-width:600px) {
.projectcrtflux{
    background:url(../images/projectgrid-crtfluxphaser-500.jpg);
    background-position:center;
    background-size:cover;
}
.projectrgbvgavolt{
    background:url(../images/projectgrid-rgbvgavolt-500.jpg);
    background-position:center;
    background-size:cover;
}
.projectcontrolsignals{
    background:url(../images/projectgrid-control-signals-500.jpg);
    background-position:center;
    background-size:cover;
}
.projectcrackedraytube{
    background:url(../images/projectgrid-crackedraytube-500.jpg);
    background-position:center;
    background-size:cover;
}
/* -------------------------------------------------------------------Video projects*/
 .projectcathoderay{
     background:url(../images/projectgrid-cathode-ray-algorithms-500.jpg);
     background-position:center;
     background-size:cover;
}
.projecteightminute{
    background:url(../images/projectgrid-eight-minute-romp-500.jpg);
    background-position:left;
    background-size:cover;
}
.projectphasing{
    background:url(../images/projectgrid-phasing-the-electromagnetic-flux-500.jpg);
    background-position:right;
    background-size:cover;
}
.projectromp{
    background:url(../images/projectgrid-2019-romp-thorugh-the-sandin-image-processor-500.jpg);
    background-position:center;
    background-size:cover;
}
.projectaestheticcatharsis{
    background:url(../images/projectgrid-aesthetic-catharsis-500.jpg);
    background-position:center;
    background-size:cover;
}
.projectreflectionson{
    background:url(../images/projectgrid-reflections-on-a-broken-mirror.png);
    background-position:center;
    background-size:cover;
}
.projectuniversalcodec{
    background:url(../images/projectgrid-universal-codec-error.jpg);
    background-position:center;
    background-size:cover;
}
.projectolympicbid{
    background:url(../images/documentary-video-of-chicagos-2016-olympic-bid-01.png);
    background-position:center;
    background-size:cover;
}
.projectvideoshorts{
    background:url(../images/projectgrid-vide-shorts.png);
    background-position:center;
    background-size:cover;
}
/* -------------------------------------------------------------------------Image projects */
.projectcrtfluxface{
     background:url(../images/projectgrid-crt-flux-phaser-face-mounted-prints-500.jpg);
     background-position:center;
     background-size:cover;
}
.projectcrtfluxstills{
     background:url(../images/projectgrid-crt-flux-phaser-stills-500.jpg);
     background-position:center;
     background-size:cover;
}
.projectrgbvgavoltstills{
     background:url(../images/rgbvgavoltstills/RGB-VGA-VOLT_640-05.jpg);
     background-position:center;
     background-size:cover;
}
.projectripcrt{
     background:url(../images/projectgrid-rip-crt.jpg);
     background-position:bottom;
     background-size:cover;
}
.projectvgasynthstills{
     background:url(../images/projectgrid-vga-stills.jpg);
     background-position:center;
     background-size:cover;
}
/* -------------------------------------------------------------------------Texts talks */
.projectsandincate{
     background:url(../images/projectgrid-sandin-cate.jpg);
     background-position:bottom;
     background-size:cover;
}
.projectvga{
     background:url(../images/projectgrid-control-signals-workshop-500.jpg);
     background-position:top;
     background-size:cover;
}
.projectnunolecture{
     background:url(../images/uno-music-technology-guest-lecturer-james-connolly.png);
     background-position:top;
     background-size:cover;
}
.projectneulithium{
     background:url(../images/crt-flux-phaser-face-chicago-500.jpg);
     background-position:top;
     background-size:cover;
}
.projecthahs{
     background:url(../images/projectgrid-hahs-rbsc-500.jpg);
     background-position:top;
     background-size:cover;
}
.projectewaste{
     background:url(../images/projectgrid-ewaste.jpg);
     background-position:top;
     background-size:cover;
}
.projectglitchtalk{
     background:url(../images/projectgrid-glitch-talk-500.jpg);
     background-position:center;
     background-size:cover;
}
.projectsaicsound{
     background:url(../images/projectgrid-saic-sound.jpg);
     background-position:center;
     background-size:cover;
}
.projectsandindocs{
     background:url(../images/projectgrid-sandin-ip-documentation-500.jpg);
     background-position:center;
     background-size:cover;
}
.projectleonardo{
     background:url(../images/projectgrid-crackedraytube-500.jpg);
     background-position:center;
     background-size:cover;
}
/* -------------------------------------------------------------------------EXHIBITIONS */
.projectcontrolsignalsexhibition{
     background:url(../images/control-signals-installation-james-connolly-500.jpg);
     background-position:bottom;
     background-size:cover;
}
}






































/* FOOTER -----------------------------------------------------------------------------------------------------*/
footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    margin:0;
    display: block;
}
@media screen and (max-width: 500px){
   footer {
    display: none;
} 
}
footer img {
    margin-right: 5px;
    opacity: 50%;
}
footer img:hover {
    margin-right: 5px;
    opacity: 100%;
}
.videoContainer {
    display:block;
    align-items: center;
  text-align: center;
}
@media screen and (orientation: landscape) and (pointer: coarse) {
    footer {
        display: none;
    }
}