:root {
    --font-color: #888888;
    --main-bg-color: #1E1E1E;
    --main-color: #333333;
    --max-site-width: 80em;
}


/* @font-face {
    font-family: 'indubitablyregular';
    src: url('INDUBITA-webfont.eot');
    src: url('INDUBITA-webfont.eot?#iefix') format('embedded-opentype'), url('INDUBITA-webfont.woff2') format('woff2'), url('INDUBITA-webfont.woff') format('woff'), url('INDUBITA-webfont.ttf') format('truetype'), url('INDUBITA-webfont.svg#indubitablyregular') format('svg');
    font-weight: normal;
    font-style: normal;
} */

* {
    color: var(--font-color);
    box-sizing: border-box;
    font-family: monospace, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--main-color);
}

#latest-album-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#latest-album-wrapper>* {
    margin: 1em;
}

#title-cover-player {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#title-cover-player>* {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

#latest-album-cover {
    max-width: 100%;
}

#album-title {
    font-size: 2em;
}

.play-img {
    width: 25px;
    height: 25px;
    margin-left: 2em;
}

.track-list-entry {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    margin-bottom: 0.5em;
    background-color: var(--main-color);
    cursor: pointer;
}

.selected {
    border-style: solid;
    border-width: thin;
    border-color: var(--font-color);
}

.styled-box {
    padding: 2em;
    margin: 2em;
    border-width: thin;
    border-radius: 15px;
    border-color: var(--main-color);
    background-color: var(--main-bg-color);
}

.impressum-text {
    font-size: smaller;
}

header {
    display: flex;
    justify-content: space-around;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

#content-bottom {
    margin-top: 10em;
    margin-bottom: 10em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#logo {
    margin: 0.3em;
    object-fit: none;
}

#headline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#artist {
    font-size: 2.5em;
}

#title {
    font-size: 1.5em;
}

#bandcamp-player-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.bandcamp-player {
    border: 0;
    height: 740px;
    margin: 2em;
}

.social-links-container {
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-wrapper {
    padding: 1em;
    text-align: center;
}

.social-link {
    font-size: x-large;
    font-weight: bolder;
    /* color: black; */
    text-align: center;
}

.social-link:visited {
    /* color: black; */
}

.picture {
    width: 100%;
}