:root {
	--black: rgb(8, 8, 8);
	--white: rgb(221, 221, 221);
	--grey: rgb(168, 168, 168);
}

body {
	font-family: Verdana, sans-serif;
	background-color: var(--black);
	color: var(--grey);
    display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.5em;
}

h1 {
	color: var(--white);
    margin-top: 5em;
	margin-bottom: 1.5em;
}

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

a:hover { 
	color: var(--white);
}

p {
	margin: 0 1em;
	color: var(--grey);
}

.promo-image {
	width: 100%;
}

#content {
	width: 100%;
    max-width: 900px;
    display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10em;
}

nav {
    width: 100%;
	margin: 2em 0;
    display: flex;
	flex-direction: row;
	justify-content: space-around;
    margin-bottom: -5em;
    z-index: 10;
    max-height: 1.3em;
}

#nav-logo {
    margin-top: -2em;
    max-width: 15em;
    width: 30vw;

}

#links {
	width: 100%;
	margin: 2em 0;
    display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.button {
    background: var(--white);
    color: var(--black);
    padding: .5em 1.2em;
    max-height: 1.2em;
    border-radius: 3px;
    box-shadow: 0px 3px 0px var(--grey);
}

.spotify {
	font-size: 2em;
	background-image: url("/assets/spotify.svg?h=1");
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.5em;
}

.instagram {
	font-size: 2em;
	background-image: url("/assets/instagram.svg?h=1");
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.5em;
}
