:root {
	--color-1: #fff; /* main background */
	--color-2: #111; /* color */
	--color-3: #888; /* link */
	--color-4: #ffff00; /* link hover */
	--color-5: #444; /* headings */ 
	--color-6: #e0e0e0; /*advert color*/
	--color-7: rgba(20,84,113,0.9);
	--color-8: rgba(0,0,0,0);
	--content-width-1: 90%;
	--gap: 5vmax;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  font-family: 'Roboto', san-serif;
  font-size: 100%;
  background: var(--color-1);
  color: var(--color-2);
  line-height: 1.3;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; 
   overflow-y: scroll;
	scroll-behavior: smooth;
}

div img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

body {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	color: var(--color-5);
	font-family: 'Pirata One', san-serif;
	overflow-wrap: break-word;
	font-size: 5vh;
	margin-top: 4vh;
	margin-bottom: 4vh;
	padding-top: 0;
	padding-bottom: 0;
}

p {
	margin-top: 3vh;
	margin-bottom: 3vh;
}

.logo {
	object-fit: cover;
	object-position: center;
	height: 6rem;
}

.header--main {
	display: flex;
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--color-8);
	z-index: 9999;
}
/*
.logo {
	object-fit: cover;
	object-position: center;
	height: 60vh;
}

.header--main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}*/

.navigation--main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	background-color: var(--color-8);
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	height: 7rem;
	z-index: 9999;
}


.nav {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: left;
}

.nav-main {
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.nav-main li {
	margin-bottom: 0.3rem;
	text-align: right;
}

.nav-socials {
	grid-template-columns: repeat(5 , 1fr);
	padding-right: 1vw;
}

.nav a {
	
	text-decoration: none;
}

.header--main a:hover {
	background-color: transparent;
}



@media all and (max-width: 40rem) {
	
	.nav-main {
		display: flex;
		flex-direction: column;
		font-size: 1rem;
	}

	.nav-main li {
		margin-bottom: 0.8rem;

	}
}

a {
	color: var(--color-3);
	text-decoration: none;
}

a:hover {
	color: #fff;
	background-color: var(--color-3);
}

hr {border-top: 1px solid #eee;}
/*
.main-content {
	overflow-y: scroll;
	scroll-behavior: smooth;
}*/

.wrapper {
	width: 40rem;
	margin: 0;
	padding: 0;
}

.section--header {
	width: 100vw;
	height: 100vh;
}

.image__header {
	background-color: var(--color-6);
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: cover;
	object-position: top;
	width: 100vw;
	height: 100vh;
}

.section {
	display: flex;
	justify-content: center;
	padding-top: 10vh;
	padding-bottom: 10vh;
}

.section__img {
	width: 100%;
	max-width: 100%;
}

.artists {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	font-weight: 700;
}

.artists li {
	margin-bottom: 0.5rem;
}

.the-artists {
	text-transform: uppercase;
	columns: 3 auto;
}

.grid--3 {
	display:  grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: var(--gap);
}

.demo{
			width: 99vw
		}

.the-image {
            object-fit: cover;
            object-position: center;
            height: 100vh;
            width: 100vw;
        }

@media all and (max-width: 40rem) {
	.wrapper {
		width:90vw;
	}

	.the-artists {
		columns: 2;
		font-size: 0.8rem;
	}

	.demo {
		width: 100vw;
	}
}

@media all and (max-width: 52rem) {
	.demo {
		width: 100vw;
	}
	}

footer {
	background-color: var(--color-8);
	padding: 10vmax 0;
}

.footer-credits {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}
