#content {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.artist-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.artist-name-text {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    font-size: 4vw;
    text-shadow: 
        -0.05em -0.05em 0.1em black,
        -0.05em  0.05em 0.1em black,
         0.05em -0.05em 0.1em black,
         0.05em  0.05em 0.1em black;
}

.artist-name {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding: 0 0 0 0;
}

.social-image {
    width: 5vw;
    height: auto;
}

.artist-logo-image {
    width: 10vw;
}

.artist-email {
    text-decoration: none;
    color: white;
    width: 5vw;
    height: 5vw;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    vertical-align: baseline;
    text-align: center;
}

.email-emoji {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
	width: 5vw;
	height: 5vw;
	text-decoration: none;
	padding: 0;
	margin: 0;
	color: white;
}

.artist-photo-image {
    width: 25vw;
    border: 2px solid black;
    margin: 1% 1% 1% 1%;
}

#moomoo-photo {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    scale: -1 1;
}

.artist-name-text > a {
    text-decoration: none;
}

.artist-blurb-text {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5em;
    margin-bottom: 2em;
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 1.2vw;
    text-align: center;
    color: white;
    text-shadow: 
        -0.05em -0.05em 0.075em black,
        -0.05em  0.05em 0.075em black,
         0.05em -0.05em 0.075em black,
         0.05em  0.05em 0.075em black;
    width: 80ch;
    max-width: 80vw;
}

.artist-blurb {
    width: 100%;
    text-align: center;
}

.artists-nav-text {
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 1vw;
    color: white;
    text-shadow: 
        -0.05em -0.05em 0.075em black,
        -0.05em  0.05em 0.075em black,
         0.05em -0.05em 0.075em black,
         0.05em  0.05em 0.075em black;
}

.artists-nav-text >  {
    font-size: 2vw;
}

.artist-links {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row-reverse;
}

.artist-link {
    width: 5vw;
    height: 5vw;
    padding-left: 1vw;
    padding-right: 1vw;
}

/* Mobile Phones */
@media only screen and (max-width: 600px) {
    #content {
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }

    .artists-nav-text {
        font-size: 2vw;
    }

    .artist-block {
        flex: 1;
        justify-content: center;
    }

    .artist-photo-image {
        width: 30vw;
    }

    .artist-logo-image {
        width: 15vw;
    }

    .artist-blurb-text {
        font-size: 2.5vw;
    }

    .artist-name-text {
        font-size: 5vw;
    }
} 

