@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital@0;1&display=swap');

* {
	font-family: 'Fira Sans Condensed', sans-serif;
}

/* BODY */

body {
	margin: 0;
	padding: 3rem 0 5rem 0;
	cursor:cell;
	overflow-x: hidden;
}

a {
	color: black;
	text-decoration: none;
	cursor:alias;
}

a:hover {
	color: red;
	text-decoration: none;
}

p {
	color: black;
}

h1 {
	color: black;
}

hr {
	border-top: 1px solid red;
}

/* CORNERS */

.name {
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 1rem;
    z-index: 10;
}
  
.info {
    position: fixed;
    right: 0px;
    top: 0px;
    padding: 1rem;
    z-index: 10;
	display: none;
  }
  
.year {
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding: 1rem;
    color: black;
    z-index: 10;
    text-decoration: none;
}

/* MARQUEE */

.marquee {
	width: 100vw;
	line-height: 7rem;
	overflow: hidden;
	padding:0;
	z-index: 20;
}

.marquee:hover {
background-color: white;
z-index: 20;
}

.marquee a:hover {
	color: red;
	z-index: 2;
}

.marquee span {
	position:relative;
	padding: 0 14rem 0 0;
	line-height:10vh;
	font-size:5vh;
	white-space:nowrap;
	z-index: 2;
}

@media screen and (max-width: 991px) {
	.marquee span {
		font-size:4vh;
		line-height:8vh;
	}
	}

/* INFO */

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	background-color: white;
	overflow-x: hidden;
	transition:  0.7s ease-in-out;
	padding-top: 60px;
	text-align:left;
	display: none;
  }

  .sidenav a:hover{
	color:white;
  }
  
  .sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 14px;
	font-size: 7vh;
	margin-left: 50px;
	color: black;
  }
  
  @media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
  }

  .myinfo {
	position: fixed;
	width: 100%;
	text-align: left;
	display: none;
	z-index: 10;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding-top: 50px;
	padding-bottom: 38px;
	z-index: 2;
	overflow: auto;
  }
  
  /* COLUMNS */
  
  .column {
	float: left;
	width: 30vw;
	margin: 0rem;
	padding: 1rem 1rem 3rem 0rem;
	overflow: scroll;
  }

  .column p {
	padding-right: 3rem;
  }

  @media screen and (max-width: 800px) {
	.column {
	  width: 100%;
	  margin: 0rem;
	  overflow: scroll;
	}
  }

  .row {
	margin: 3rem 1rem 7rem 1rem;
  }

  .row:after {
	content: "";
	display: table;
	clear: both;
  }

/* MARQUE INFO */

.marquee span::before {
	color: grey;
	z-index: 2;
}
.marquee span::before {
	font-family: 'Fira Sans Condensed', sans-serif;
	position:absolute;
	top:0.5rem;
	left:-10rem;
	display:block;
	width:7rem;
	height:10rem;
	line-height:1.7vh;
	font-size:2vh;
	text-transform:uppercase;
	text-align:right;
	white-space:normal;
}

.marquee.about span::before {
	content:"Interviews / Archives";
}
.marquee.stasis span::before {
	content:"Stasis Cinema / Waiting";
}
.marquee.waiting span::before {
	content:"Waiting / Situations";
}
.marquee.untitled span::before {
	content:"Phonography / Unlimited";
}
.marquee.archives span::before {
	content:"Listening Room / Archives";
}
.marquee.petit span::before {
	content:"Listen to impermanence / Curatorial";
}
.marquee.funeral span::before {
	content:"Sonic Situation / Radio";
}
.marquee.zulueta span::before {
	content:"Sonic Re-works / Cinema";
}
.marquee.bihotz span::before {
	content:"Heartbeat infrasounds archive";
}
.marquee.cms span::before {
	content:"No Input Mixing Board / Analog & Digital";
}
.marquee.phonethics span::before {
	content:"Sonic poems / Artworks";
}

/* BACKGROUND PICTURES */

img {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	height: 100vh;
	width: 100vw;
	object-fit: cover;
}

@media screen and (max-width: 991px) {
img {
	height: 100vh;
	width: auto;
}
}

.marquee:hover img, #intro * li:focus img, #intro * li:active img {
	opacity: 1;
	z-index: 1;
  }

/* LOADING */

body {
	-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
	   -moz-animation: fadein 3s; /* Firefox < 16 */
		-ms-animation: fadein 3s; /* Internet Explorer */
		 -o-animation: fadein 3s; /* Opera < 12.1 */
			animation: fadein 3s;
  }
  
  @keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
  }
  
  /* Firefox < 16 */
  @-moz-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
  }
  
  /* Safari, Chrome and Opera > 12.1 */
  @-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
  }
  
  /* Internet Explorer */
  @-ms-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
  }
  
  /* Opera < 12.1 */
  @-o-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
  }

/* SCROLL BAR */

::-webkit-scrollbar {
	width: 1px;
}
  
  ::-webkit-scrollbar-track {
	background: white; 
  }
   
  ::-webkit-scrollbar-thumb {
	background: red; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: black; 
  }

  /* SELECTION */

  ::-moz-selection { 
	color: white;
	background: black;
  }
  
  ::selection {
	color: white;
	background: black;
  }
  