nav a[href="/music"] {
    text-decoration: var(--activePageTextDeco);
    text-underline-offset: var(--activePageTextUnderline);
}

#content {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-bottom: 4rem;

    width: 100%;
}

h1 {
    display: none;
}

h2 {
    text-shadow: 0 0 20px #000000, 0 0 20px #000000, 0 0 20px #000000;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 30px;
    margin: 1.5rem auto;
    color: var(--secondary);
}

.musicEntry {
    width: 60vw;
    margin-bottom: 2rem;
}

.illustrationcontainer {
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imagecontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.textcontainer {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textcontainer h2 {
    text-shadow: 0 0 20px #000000, 0 0 20px #000000, 0 0 20px #000000;
    color: var(--secondary);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin: unset;
    margin-bottom: 7px;
    margin-top: 24px;
}

.textcontainer p{
    text-shadow: 0 0 20px #000000, 0 0 20px #000000, 0 0 20px #000000;
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin-top: auto;
}
.youtube {
    width: 60vw;
    height: 500px;
}

.youtube-container {
    width: 60vw;
}

.spotify .placeholder {
    height: 156px;
}

.media-container {
    width: 100%;
    position: relative;
}

.media-container iframe {
    position: relative;
    z-index: 999;
}

.media-loading {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.media-loading img {
    height: 30px;
}

.soundcloud-media {
    width: 100%;
    height: 120px;
}

@media (max-width: 800px) {
    .musicEntry {
      width: 80vw;
    }
    .textcontainer {
        width: 80vw;
    }
    .textcontainer p {
        text-align: left;
    }

    .youtube {
        width: 80vw;
        height: 40vh;
    }

    .youtube-container {
        width: 80vw;
    }

    .textcontainer p:first-of-type {
        text-align: center;
    }
}

