* {
  box-sizing: border-box;
}

body {
	colour: white;
	margin: 0;
	padding: 0;
	font-family: 'Helvetica', Helvetica, sans-serif;
	font-style: normal;
	font-size: 22px;
	font-weight: bold;
	line-height: 24px;
	background-color: #0A0A0A;
}

html, body {
  overflow: hidden;
  cursor: url('Links/cursor-white.png'), auto;
}

a {
	cursor: url('Links/cursor-white.png'), auto;
}

/* unvisited link */
a:link {
  color: white;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: white;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #595959;
  text-decoration: none;
}

/* selected link */
a:active {
  color: white;
  text-decoration: none;
}

.header {
	color: white;
	width: 100%;
	padding-top: .5%;
	padding-bottom: .5%;
	padding-left: .5%;
	padding-right: 0;
	background-color: #0A0A0A;
	text-align: left;
	border-bottom-color: white;
	border-bottom: solid;
	border-width: thin;
	border-collapse: collapse;
	position: fixed;
	top: 0;	
	z-index: 1;
}

.logo {
	width: 14.5%;
	margin: auto;
	display: flex;
	align-items: left;
	text-align: left;
	padding: 0;
	float: left;
}

ul {
    display: flex;
    align-items: stretch; /* Default */
    justify-content: space-between;
    width: 85.5%;
    margin: 0;
    padding: 0;
	z-index: +10;
}

li {
    display: block;
    flex: 0 1 auto; /* Default */
    list-style-type: none;
	padding-right: .5%;
}

.image-left {
	position: fixed;
	top: 39.9%;
	padding-left: .5%;
}

.text {
	color: white;
	position: fixed;
	top: 39.5%;
	left: 15%;
}

.copyright {
	color: white;
	width: 100%;
	padding: .5%;
	text-align: left;
	border-top-color: white;
	border-top: solid;
	border-width: thin;
	border-collapse: collapse;
	position: fixed;
	bottom: 0;
	float: left;
}

.copyright em {
	letter-spacing: -0.8px;
	font-style: normal;
}

.copyright i {
	letter-spacing: -1.8px;
	font-style: normal;
}

.instagram {
	position: fixed;
	bottom: 0;
	left: 14.5%;
	padding: .5%;
	}

@media screen and (max-width:800px) {
  .text {
	  position: fixed;
	  top: 34%;
	  left: .5%;
  }
	
  .image-left {
	  visibility: hidden;
  }	  
	
  .instagram {
      left: 0;
	  width: 100%;
	  border-top-color: white;
	  border-top: solid;
	  border-width: thin;
	  border-collapse: collapse;
  }	
	
   .copyright {
	  visibility: hidden;
  }
}
