header,
footer {
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
	font-size: 2em;
	padding: .5em 0;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 10vw;
    padding: 0;
    height: 100vh;
    position: relative;
    text-shadow: 2px 2px 4px black;
    background-position: 70% 0;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    position: fixed;
    background-color: var(--dark);
    color: var(--light);
    bottom: 0;
    width: 100%;
    max-height: 100px;
    transition: .1s;
    z-index: 1;
}
footer.collapsed {
	max-height: 0;
	overflow: hidden;
	padding: 0;
}
footer p:first-of-type {
    padding-left: .5em;
}
footer p:last-of-type {
    padding-right: 1.5em;
}
header h1 {
    display: none;
}
header p,
footer p {
    margin: 0;
    font-weight: lighter;
    font-family: handwriting;
}
header p {
    color: var(--light);
}
header a,
footer a {
    color: inherit;
    text-decoration: none;
    display: block;
}
h1 {
    font-size: 5rem;
    position: absolute;
    bottom: 0;
}
footer img {
    width: 100%;
}
footer a {
    display: inline-block;
    width: 50px;
    margin-right: 1em;
}
.social {
    display: flex;
    width: 30%;
    justify-content: center;
}
.social img {
    display: none;
}
.social a,
.stream a {
    width: 40px;
    height: 40px;
    display: block;
    margin-right: 1em;
    margin-top: .5em;
    font: normal normal normal 14px/1 FontAwesome;
    color: var(--light);
    text-decoration: none;
    font-size: 1.5rem;
    transition: .3s;
}
.social a:hover, 
.stream a:hover {
    color: var(--comp);
}
.social a[href*="facebook"]::before {
    content:"\f09a";
}
.social a[href*="twitter"]::before {
    content:"\f099";
}
.social a[href*="youtube"]::before {
    content:"\f167";
}
.stream {
    flex: 1;
    text-align: center;
}
.stream li {
    display: inline-block;
}
.stream a[href*="bandcamp"]::before {
    content: "\f2d5";
    color: inherit;
}
.stream a[href*="spotify"]::before {
    content: "\f1bc";
    color: inherit;
}
.hiddenbreak {
    display: none;
}
